mirror of
https://github.com/YouHaveTrouble/youhavetrouble.github.io.git
synced 2026-05-12 06:16:55 +00:00
22 lines
326 B
Plaintext
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>
|