Skip to content

Commit

Permalink
Added Contact to header nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
SamElfring committed Oct 1, 2023
1 parent b711b7f commit ae83a74
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
</div>

<ul class="hidden md:flex gap-4">
<li
v-for="link in navLinks"
>
<li v-for="link in navLinks">
<a
:href="link.link"
class="text-slate-400 hover:underline hover:text-white"
Expand All @@ -26,6 +24,7 @@ const navLinks = [
{ name: "Ervaringen", link: "#experiences" },
{ name: "Opleidingen", link: "#study" },
{ name: "Projecten", link: "#projects" },
{ name: "Vaardigheden", link: "#skills" }
{ name: "Vaardigheden", link: "#skills" },
{ name: "Contact", link: "#contact" }
];
</script>

0 comments on commit ae83a74

Please sign in to comment.