SanYeCao-blog/src/components/Header.astro

44 lines
799 B
Text
Raw Normal View History

2026-03-24 18:01:45 +00:00
---
import Navigation from "./Navigation.astro";
import ThemeIcon from "./ThemeIcon.astro";
2026-03-24 22:28:23 +00:00
import { getLangFromUrl, getTranslations } from "@/i18n";
const lang = getLangFromUrl(Astro.url);
const t = getTranslations(lang);
2026-03-24 18:01:45 +00:00
---
2026-03-24 22:28:23 +00:00
<header class="site-header">
<div class="theme-icon-wrap">
<ThemeIcon />
</div>
<nav class="header-nav">
<h1>{t.banner.title}</h1>
2026-03-24 18:01:45 +00:00
<Navigation />
</nav>
</header>
<style>
2026-03-24 22:28:23 +00:00
.site-header {
position: relative;
padding-top: 0.5rem;
}
.theme-icon-wrap {
position: absolute;
top: 0;
right: 0;
}
.header-nav {
2026-03-24 18:01:45 +00:00
display: flex;
2026-03-24 22:28:23 +00:00
flex-direction: column;
gap: 1rem;
}
.header-nav h1 {
margin: 0;
font-style: italic;
2026-03-24 18:01:45 +00:00
}
</style>