aboutsummaryrefslogtreecommitdiff
path: root/src/components/Header.astro
blob: bd043201711d72639d7b8e3139ba9e4d807afbaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<style lang="scss">
	a {
		margin-right: 1.5rem;
		text-decoration: none;

		&:last-child {
			margin-right: 0;
		}
	}
</style>

<header>
	<a href="/" lang="en" aria-label="Home">Home</a>
	<a href="/blog/" lang="en" aria-label="Blog">Blog</a>
</header>