0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 08:30:27 +03:00

Added footer component

This commit is contained in:
2024-09-17 23:24:24 +00:00
parent cf85f10724
commit 9ff6f2cd0e
6 changed files with 743 additions and 15 deletions

View File

@ -1,5 +1,6 @@
---
import Analytics from "../components/Analytics.astro";
import Footer from "../components/Footer.astro";
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";
import "../scss/global.scss";
@ -24,5 +25,6 @@ const { description, title } = Astro.props;
<slot />
</main>
<Analytics title={title ?? import.meta.env.DEFAULT_TITLE} />
<Footer />
</body>
</html>