2025-06-10 13:44:56 +00:00
|
|
|
<style lang="scss">
|
2025-06-10 18:36:35 +00:00
|
|
|
@use "../scss/variables" as *;
|
2025-06-10 13:44:56 +00:00
|
|
|
|
|
|
|
|
header {
|
|
|
|
|
padding-bottom: 1rem;
|
2025-06-10 18:36:35 +00:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-title {
|
|
|
|
|
color: $colorText;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
left: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-links {
|
2025-06-10 13:44:56 +00:00
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
margin-right: 1.5rem;
|
2025-06-10 18:36:35 +00:00
|
|
|
text-decoration: none;
|
2025-06-10 13:44:56 +00:00
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<header>
|
2025-06-10 18:36:35 +00:00
|
|
|
<a class="site-title" href="/">{import.meta.env.DEFAULT_TITLE}</a>
|
|
|
|
|
<div class="nav-links">
|
|
|
|
|
<a href="/">Home</a>
|
|
|
|
|
<a href="/blog/">Blog</a>
|
|
|
|
|
</div>
|
2025-06-10 13:44:56 +00:00
|
|
|
</header>
|