diff options
Diffstat (limited to 'src/components/Header.astro')
| -rw-r--r-- | src/components/Header.astro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/Header.astro b/src/components/Header.astro new file mode 100644 index 0000000..f9a0c57 --- /dev/null +++ b/src/components/Header.astro @@ -0,0 +1,16 @@ +<style lang="scss"> + a { + margin-right: 1.5rem; + + &:last-child { + margin-right: 0; + } + } +</style> + +<header> + <nav aria-label="Navigation"> + <a href="/" lang="en" aria-label="Home">Home</a> + <a href="/blog/" lang="en" aria-label="Blog">Blog</a> + </nav> +</header> |
