From 5f51d163070670b24194e844d37de1db68f36d5e Mon Sep 17 00:00:00 2001 From: Emil Gulamov <125820963+mearashadowfax@users.noreply.github.com> Date: Mon, 12 Feb 2024 08:05:59 +0400 Subject: [PATCH] Fix incorrect attribute in Navbar component SVG Remove extraneous single character attribute 'f' from the SVG rect element in the Navbar component of astro file. This correction ensures that the SVG renders correctly, maintaining the desired appearance of the Navbar. --- src/components/Meta.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Meta.astro b/src/components/Meta.astro index c5e8593..44cb457 100644 --- a/src/components/Meta.astro +++ b/src/components/Meta.astro @@ -2,8 +2,8 @@ const title: string = "ScrewFast"; const author:string = "Emil Gulamov" const description:string = ""; -const URL:string = ""; -const socialImage:string = "screw-fast-git-main-emils-projects-69b3f1de.vercel.app/social.png"; +const URL:string = "https://screw-fast.vercel.app"; +const socialImage:string = "https://screw-fast.vercel.app/social.png"; ---