feat: add link to imprint
All checks were successful
deploy / deploy (push) Successful in 23s

This commit is contained in:
ndsboy 2025-06-02 17:08:31 +00:00
parent 8e260caa9e
commit 5ab81a98fb

View file

@ -47,6 +47,25 @@ const downloads = [
documents.Mitgliedsantrag, documents.Mitgliedsantrag,
), ),
] ]
const contact = [
entry(
"Friedrichstr. 17, 72250 Freudenstadt",
"icon-[ph--house-line-duotone]",
"https://swablab.de/lab",
),
entry(
"Katharinenstr. 1, 72250 Freudenstadt",
"icon-[ph--mailbox-duotone]",
"https://swablab.de/imprint",
),
entry(
"info@swablab.de",
"icon-[ph--envelope-simple-duotone]",
"mailto:info@swablab.de",
),
entry("+49 15679 232971", "icon-[ph--phone-duotone]", "tel:+4915679232971"),
]
--- ---
<div class="bg-base-200 border-t border-base-300"> <div class="bg-base-200 border-t border-base-300">
@ -84,31 +103,17 @@ const downloads = [
</nav> </nav>
<nav class="w-full"> <nav class="w-full">
<header class="footer-title border-b w-full">Kontakt</header> <header class="footer-title border-b w-full">Kontakt</header>
<a {
class="link link-hover link-primary flex gap-1 items-center" contact.map((e) => (
href="https://swablab.de/lab" <a
> class="link link-hover link-primary flex gap-1 items-center"
<span class="icon-[ph--house-line-duotone]"></span> href={e.link}
Friedrichstraße 17, 72250 Freudenstadt >
</a> <span class={e.icon} />
<div class="flex gap-1 items-center"> {e.name}
<span class="icon-[ph--mailbox-duotone]"></span> </a>
Katharinenstr. 1, 72250 Freudenstadt ))
</div> }
<a
class="link link-hover link-primary flex gap-1 items-center"
href="mailto:info@swablab.de"
>
<span class="icon-[ph--envelope-simple-duotone]"></span>
info@swablab.de
</a>
<a
class="link link-hover link-primary flex gap-1 items-center"
href="tel:+4915679232971"
>
<span class="icon-[ph--phone-duotone]"></span>
+49 15679 232971
</a>
</nav> </nav>
</footer> </footer>