Fix missing closing tag in Navbar

Fixed an issue where the NavLink component in the Navbar.astro file was not correctly closed.
This commit is contained in:
Emil Gulamov 2024-02-23 20:55:36 +04:00
parent 982f6f081a
commit 8e6f720f75

View file

@ -132,7 +132,7 @@ import { navBarLinks } from "../../utils/navigation.ts";
> >
<!-- Navigation links and Authentication component --> <!-- Navigation links and Authentication component -->
{navBarLinks.map(link => ( {navBarLinks.map(link => (
<NavLink url={link.url} name={link.name} /></a> <NavLink url={link.url} name={link.name} />
))} ))}
<Authentication /> <Authentication />