footer, root module nav, and main page done

This commit is contained in:
Xanazf 2024-10-09 01:14:02 +03:00
parent cd1226e333
commit 23719ec405
No known key found for this signature in database
GPG key ID: 4E4A5AD1FB748427
17 changed files with 519 additions and 34 deletions

View file

@ -1,5 +1,6 @@
---
import Header from "@components/Header.astro";
import Footer from "@src/components/Footer.astro";
import Head from "@config/Head.astro";
import PreTheme from "@config/PreTheme.astro";
import "@styles/global.css";
@ -25,5 +26,6 @@ const { title, description } = Astro.props;
<Header />
<h1>{title}</h1>
<slot />
<Footer />
</body>
</html>