switch to Astro

This commit is contained in:
2024-05-03 22:49:29 +02:00
parent 0aa328cc09
commit 4405754d1d
70 changed files with 9077 additions and 825 deletions
+21
View File
@@ -0,0 +1,21 @@
---
import Logo from './Logo.astro'
import Nav from './Nav.astro'
const { current = '' } = Astro.props;
---
<style>
header {
display: flex;
margin: 0 auto;
max-width: 1400px;
padding: 2em;
width: 100%;
}
</style>
<header>
<Logo />
<Nav current={current} />
</header>