personal-website-astro/src/components/Header.astro
ChronosXYZ a49603e539
All checks were successful
continuous-integration/drone/push Build is passing
add posts and things
2024-09-19 02:47:22 +03:00

14 lines
361 B
Plaintext

---
import HeaderLink from './HeaderLink.astro';
import { SITE_TITLE } from '../consts';
---
<header>
<h1 id="title">{SITE_TITLE}</h1>
<nav>
<HeaderLink href="/" showSeparator={true}>Home</HeaderLink>
<HeaderLink href="/blog" showSeparator={true}>Posts</HeaderLink>
<HeaderLink href="/rss.xml" showSeparator={false}>RSS</HeaderLink>
</nav>
</header>