Kremta-Website/src/pages/about.astro

10 lines
248 B
Plaintext
Raw Normal View History

2025-10-06 12:54:47 +00:00
---
import type { AboutEntry } from "@/types";
import EntryLayout from "@components/about/EntryLayout.astro";
import { getIndex } from "@lib/contentParser";
const entry = (await getIndex("about")) as AboutEntry;
---
<EntryLayout entry={entry} />