18 lines
No EOL
331 B
Text
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> |