Kremta-Website/src/pages/index.astro

10 lines
244 B
Plaintext
Raw Normal View History

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