diff options
author | Valentin Popov <valentin@popov.link> | 2024-10-24 22:45:26 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-10-24 22:45:26 +0300 |
commit | ef6185eb00b578c10034fe94be5131f0342a4d82 (patch) | |
tree | d2301d496182683203c20f5e8c8070e9aae79083 /src/layouts | |
parent | 2aa8042e3db6d7bdb72cf14669bcd27c74620911 (diff) | |
download | popov.link-ef6185eb00b578c10034fe94be5131f0342a4d82.tar.xz popov.link-ef6185eb00b578c10034fe94be5131f0342a4d82.zip |
Deleted the footer of the pages
Diffstat (limited to 'src/layouts')
-rw-r--r-- | src/layouts/BaseLayout.astro | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 4a4efe6..ca8826a 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -1,6 +1,5 @@ --- import Analytics from "../components/Analytics.astro"; -import Footer from "../components/Footer.astro"; import Head from "../components/Head.astro"; import "../scss/global.scss"; @@ -22,7 +21,6 @@ const { description, title } = Astro.props; <main> <slot /> </main> - <Footer /> <Analytics title={title ?? import.meta.env.DEFAULT_TITLE} /> </body> </html> |