SanYeCao-blog/src/components/Header.astro

22 lines
343 B
Text
Raw Normal View History

2026-03-24 18:01:45 +00:00
---
import Navigation from "./Navigation.astro";
import ThemeIcon from "./ThemeIcon.astro";
---
<header>
<nav>
2026-03-24 19:32:44 +00:00
<h1>SanYeCao Blog</h1>
2026-03-24 18:01:45 +00:00
<div>
<ThemeIcon />
</div>
<Navigation />
</nav>
</header>
<style>
div {
display: flex;
justify-content: space-between;
}
</style>