From f135fd62e2432a7ca9480d9a01c05c0348a30d12 Mon Sep 17 00:00:00 2001 From: Troy Date: Mon, 17 Feb 2025 00:14:50 +0000 Subject: [PATCH] feat: test dot as favicon --- public/favicon.svg | 24 ++++++++++++++++-------- src/components/Footer.astro | 2 +- src/components/Header.astro | 9 +++++---- src/components/Hero.astro | 18 ++++++++++-------- src/components/Prose.astro | 2 +- src/components/ShowcasePost.astro | 2 +- src/icons/icon.svg | 18 ++++++++++++++++-- src/styles/global.css | 5 +++-- 8 files changed, 53 insertions(+), 27 deletions(-) diff --git a/public/favicon.svg b/public/favicon.svg index f4745cc..18608d4 100644 --- a/public/favicon.svg +++ b/public/favicon.svg @@ -1,9 +1,17 @@ - - - + + + + + + + + + + + + + + + + diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 4b36cd9..a81a58d 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -5,7 +5,7 @@ import { SITE } from "@consts";
© {new Date().getFullYear()} - {SITE.TITLE}. All rights reserved. diff --git a/src/components/Header.astro b/src/components/Header.astro index 407cfac..12e7b03 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,6 +1,7 @@ --- import { SITE } from "@consts"; import Button from "@components/Button.astro"; +import { Icon } from "astro-icon/components"; const pathname = new URL(Astro.request.url).pathname; const currentPath = pathname.replace(/\/$/, ""); @@ -10,10 +11,10 @@ const currentPath = pathname.replace(/\/$/, "");