forked from
quillmatiq.com/augment
Fork of Chiri for Astro for my blog
1---
2import { themeConfig } from '@/config'
3import ThemeToggle from '@/components/ui/ThemeToggle.astro'
4---
5
6<header>
7 <nav>
8 <a href="/" style="font-size: large;">{themeConfig.site.title}</a>
9 <ThemeToggle />
10 </nav>
11</header>
12<style>
13 header {
14 margin: 0;
15 }
16 nav {
17 display: flex;
18 justify-content: space-between;
19 align-items: center;
20 }
21 header a {
22 font-weight: var(--font-weight-bold);
23 color: var(--text-primary);
24 text-decoration: none;
25 min-width: 3rem;
26 display: inline-block;
27 }
28</style>