15 lines
403 B
Plaintext
15 lines
403 B
Plaintext
---
|
|
import AppGuard from "../components/AppGuard.svelte";
|
|
import MainLayout from "../layouts/MainLayout.astro";
|
|
import Header from "../components/Header.svelte";
|
|
import MainGrid from "../components/MainGrid.svelte";
|
|
---
|
|
|
|
<!-- index.astro -->
|
|
<MainLayout>
|
|
<AppGuard client:only="svelte">
|
|
<Header client:only="svelte" />
|
|
<MainGrid client:only="svelte" />
|
|
</AppGuard>
|
|
</MainLayout>
|