Initialize project with general functionality

This commit is contained in:
thiloho
2025-04-26 09:13:54 +02:00
commit 69be9d8ab7
42 changed files with 6368 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
import PageLayout from "../layouts/PageLayout.astro";
import { getEntry, render } from "astro:content";
const legalContent = await getEntry("legal", "legal");
if (!legalContent) {
throw new Error();
}
const { Content } = await render(legalContent);
---
<PageLayout title="Legal Disclosure" metaDescription="Legal Disclosure">
<Content />
</PageLayout>