fix: some stuff
Some checks failed
Deploy to SFTP Server / build (push) Failing after 8m37s

This commit is contained in:
Max Richter
2025-10-24 15:00:08 +02:00
parent 5c1df62fd2
commit 190edd0915
3 changed files with 8 additions and 12 deletions

View File

@@ -8,5 +8,11 @@ const t = useTranslations(Astro.url);
---
<Layout title="Max Richter">
{resources.map((resource) => <HeroCard post={{...resource, body: t(`${resource.id}.description`), data: {cover:{src:resource.cover}, title: t(resource.id)}}} />)}
{resources.map((resource) =>
<HeroCard post={{
...resource,
body: t(`${resource.id}.description`),
data: {
cover:{src:resource.cover}, title: t(resource.id)}}} />
)}
</Layout>