mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
* migrate to biome * cleanup * fix * use tsx * script tweaks * fix test runs * path tweaks
22 lines
603 B
Plaintext
22 lines
603 B
Plaintext
---
|
|
import Menu from '@/components/Menu/index.astro'
|
|
import ThemeSwitch from '@/components/ThemeSwitch/index.astro'
|
|
import Search from '@/features/Search/index.astro'
|
|
import { Logo } from '@/images/components'
|
|
import styles from './index.module.css'
|
|
---
|
|
|
|
<header class={styles.header} aria-label="Header" id="header">
|
|
<div class={styles.headerContent}>
|
|
<a href="/" class={styles.title}>
|
|
<Logo class={styles.logo} viewBox="0 0 191 36" /> kremalicious
|
|
</a>
|
|
|
|
<nav aria-label="Menu" class={styles.nav}>
|
|
<ThemeSwitch />
|
|
<Search />
|
|
<Menu />
|
|
</nav>
|
|
</div>
|
|
</header>
|