17 lines
471 B
Text
17 lines
471 B
Text
---
|
|
import Layout from "@layouts/Layout.astro";
|
|
import Intro from "@components/home/Intro.astro";
|
|
import RecentActivity from "@components/home/RecentActivity.astro";
|
|
import RecentPosts from "@components/home/RecentPosts.astro";
|
|
import { fetchGlobalData } from "@utils/data/global/index.js";
|
|
|
|
export const prerender = true;
|
|
|
|
const { globals } = await fetchGlobalData(Astro);
|
|
---
|
|
|
|
<Layout>
|
|
<Intro intro={globals.intro} />
|
|
<RecentActivity />
|
|
<RecentPosts />
|
|
</Layout>
|