Files
youhavetrouble.github.io/src/components/Header.astro
T
2025-04-06 21:40:05 +02:00

22 lines
326 B
Plaintext

---
import Logo from './Logo.astro'
import Nav from './Nav.astro'
const { current = '' } = Astro.props;
---
<style>
header {
display: flex;
margin: 0 auto;
max-width: var(--wrap);
padding: 1em;
width: 100%;
}
</style>
<header>
<Logo width="50" height="50" />
<Nav current={current} />
</header>