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

Refactor Footer component and remove it from BaseLayout

This commit is contained in:
2024-09-13 00:16:37 +00:00
parent d4a6772ec5
commit 4a821edd50
3 changed files with 0 additions and 52 deletions

View File

@ -1,6 +1,5 @@
---
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,7 +23,6 @@ const { description, title } = Astro.props;
<main>
<slot />
</main>
<Footer />
<Analytics title={title ?? import.meta.env.DEFAULT_TITLE} />
</body>
</html>