10 lines
244 B
Plaintext
10 lines
244 B
Plaintext
|
|
---
|
||
|
|
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} />
|