From 8e6f720f75d7dd5bf4003743b5eb40a2478586ae Mon Sep 17 00:00:00 2001
From: Emil Gulamov <125820963+mearashadowfax@users.noreply.github.com>
Date: Fri, 23 Feb 2024 20:55:36 +0400
Subject: [PATCH] Fix missing closing tag in Navbar
Fixed an issue where the NavLink component in the Navbar.astro file was not correctly closed.
---
src/components/sections/Navbar.astro | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/sections/Navbar.astro b/src/components/sections/Navbar.astro
index 025e371..44e6297 100644
--- a/src/components/sections/Navbar.astro
+++ b/src/components/sections/Navbar.astro
@@ -132,7 +132,7 @@ import { navBarLinks } from "../../utils/navigation.ts";
>
{navBarLinks.map(link => (
-
+
))}