14 lines
313 B
Text
14 lines
313 B
Text
---
|
|
import Layout from "@/layouts/Layout.astro";
|
|
import ThemeToggle from "@/components/ThemeToggle.astro";
|
|
import Text from "@/components/Text.astro";
|
|
import Logo from "@/components/Logo.astro";
|
|
import Links from "@/components/Links.astro";
|
|
---
|
|
|
|
<Layout>
|
|
<ThemeToggle />
|
|
<Text />
|
|
<Logo />
|
|
<Links />
|
|
</Layout>
|