diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..2e6bf9a --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,25 @@ +
+ + \ No newline at end of file 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; } } 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";