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:
parent
982f6f081a
commit
8e6f720f75
1 changed files with 1 additions and 1 deletions
|
@ -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 />
|
||||||
|
|
Loading…
Add table
Reference in a new issue