diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index 3441240..742ef7e 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -5,7 +5,7 @@ import '../styles/global.css'; interface Props { title: string; - description: string; + description?: string; image?: string; } diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 09e49f2..749da76 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -9,7 +9,7 @@ const today = new Date(); My Github? @@ -21,17 +21,21 @@ const today = new Date(); footer { padding: 2em 1em 6em 1em; /* background: linear-gradient(var(--gray-gradient)) no-repeat;'*/ - color: rgb(var(--gray)); + color: white; + background-color: rgb(198, 60, 81); text-align: center; - width: 80%; margin-left: auto; margin-right: auto; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + border-radius: 10px; + width: 100%; + height: 0em; } .social-links { display: flex; justify-content: center; gap: 1em; - margin-top: 1em; } .social-links a { text-decoration: none; diff --git a/src/components/Header.astro b/src/components/Header.astro index ef2df50..e0d477f 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -10,6 +10,7 @@ import { SITE_TITLE } from '../consts'; Home Blog About + Homelab