This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-astro/src/components/Header.astro

18 lines
No EOL
331 B
Text

---
import Menu from '@components/nav/Menu.astro';
const { siteName, url } = Astro.props;
const { nav } = Astro.locals;
const isHomePage = url === '/';
---
<section class="main-title">
<h1>
{isHomePage ? (
siteName
) : (
<a href="/" tabindex="0">{siteName}</a>
)}
</h1>
<Menu nav={nav} />
</section>