1
0

Done implementing basic stay tuned site with robots.txt and sitemap

This commit is contained in:
Michael Rieger
2025-09-16 19:00:56 +02:00
parent 5967768c25
commit 6832ad549e
18 changed files with 772 additions and 77 deletions
+8 -2
View File
@@ -7,7 +7,7 @@ const isEnglish = Astro.currentLocale === "en";
---
<header>
<a href="." class="hoverable hoverable--diff">
<a href="/" class="hoverable hoverable--diff">
<span class="sr-only">Back to home</span>
<Image
class="icon"
@@ -20,6 +20,12 @@ const isEnglish = Astro.currentLocale === "en";
<nav>
<ul>
<li>
<a class="hoverable" href="/imprint">Imprint</a>
</li>
<li>
<a class="hoverable" href="/privacy">Privacy policy</a>
</li>
<!-- <li>
<a
class:list={['hoverable', { active: isEnglish }]}
href={getRelativeLocaleUrl("en", "")}>EN</a
@@ -30,7 +36,7 @@ const isEnglish = Astro.currentLocale === "en";
class:list={['hoverable',{ active: !isEnglish }]}
href={getRelativeLocaleUrl("de", "")}>DE</a
>
</li>
</li> -->
</ul>
</nav>
</header>