From 0429d99ef8ebcadbbf3e0686e32be2d62073163b Mon Sep 17 00:00:00 2001 From: Kieran Klukas <92754843+kcoderhtml@users.noreply.github.com> Date: Fri, 29 Dec 2023 13:46:14 -0500 Subject: [PATCH 1/3] feat: made notification hide completely --- src/components/Notification.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Notification.astro b/src/components/Notification.astro index 0cc5487..72db265 100644 --- a/src/components/Notification.astro +++ b/src/components/Notification.astro @@ -23,7 +23,7 @@ @keyframes disappear { 0% { - bottom: -10vh; + bottom: -100vh; } 10% { @@ -35,7 +35,7 @@ } 100% { - bottom: -10vh; + bottom: -100vh; } } From 953cd6627f2ff0be4b422397dca94ed4536d2160 Mon Sep 17 00:00:00 2001 From: Kieran Klukas <92754843+kcoderhtml@users.noreply.github.com> Date: Fri, 29 Dec 2023 20:47:28 -0500 Subject: [PATCH 2/3] feat: added footer --- src/components/Footer.astro | 25 +++++++++++++++++++++++++ src/pages/index.astro | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 src/components/Footer.astro diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..df758dc --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,25 @@ + + + \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index f7a9aeb..451343f 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,6 +2,7 @@ import EmailForm from "../components/Email-Form.astro"; import Layout from "../layouts/Layout.astro"; import Notification from "../components/Notification.astro"; +import Footer from "../components/Footer.astro"; import "../styles/index.css"; --- @@ -142,6 +143,7 @@ import "../styles/index.css"; +