From 9ff6f2cd0eb93f294e0a03226daaf5000f1b5f44 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 17 Sep 2024 23:24:24 +0000 Subject: Added footer component --- src/components/Footer.astro | 61 ++++++++++++++++++++++++++++++++++++++++++++ src/layouts/BaseLayout.astro | 2 ++ src/scss/_framework.scss | 1 + 3 files changed, 64 insertions(+) create mode 100644 src/components/Footer.astro (limited to 'src') diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..ea53b25 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,61 @@ +--- +import { Icon } from "astro-icon/components"; +import dayjs from "dayjs"; +--- + + + + diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 8456916..142b398 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -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; +