summaryrefslogtreecommitdiff
path: root/src/components/Nav.astro
blob: f122ee7f290abecd59515157a2928d6a6817bf27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
const navLinks = [
	{ name: "Home", url: "/" },
	{ name: "About Me", url: "/about-me" },
	{ name: "Contact", url: "/contact" },
	{ name: "GitHub", url: "https://github.com/getchoo" },
];
---

<nav>
	{
		navLinks.map(({ name, url }) => (
			<div>
				<a href={url}>{name}</a>
			</div>
		))
	}
</nav>