From f8924c1c8b9f2528fd9d65c8ddf11685471c06f6 Mon Sep 17 00:00:00 2001 From: Emil Gulamov <125820963+mearashadowfax@users.noreply.github.com> Date: Mon, 12 Feb 2024 07:43:21 +0400 Subject: [PATCH] Add Navbar component and update Meta component Introduce a new Navbar component to improve site navigation. The component features a brand logo, navigation links, auto theme detection, and theme switcher. In existing Meta component, update the socialImage path for better SEO and social sharing. --- src/components/Meta.astro | 2 +- src/components/Navbar.astro | 242 ++++++++++++++++++++++++++++++++++++ 2 files changed, 243 insertions(+), 1 deletion(-) create mode 100644 src/components/Navbar.astro diff --git a/src/components/Meta.astro b/src/components/Meta.astro index 3198559..c5e8593 100644 --- a/src/components/Meta.astro +++ b/src/components/Meta.astro @@ -3,7 +3,7 @@ const title: string = "ScrewFast"; const author:string = "Emil Gulamov" const description:string = ""; const URL:string = ""; -const socialImage:string = ""; +const socialImage:string = "screw-fast-git-main-emils-projects-69b3f1de.vercel.app/social.png"; --- \ No newline at end of file