This commit is contained in:
parent
8e260caa9e
commit
5ab81a98fb
1 changed files with 30 additions and 25 deletions
|
@ -47,6 +47,25 @@ const downloads = [
|
|||
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">
|
||||
|
@ -84,31 +103,17 @@ const downloads = [
|
|||
</nav>
|
||||
<nav class="w-full">
|
||||
<header class="footer-title border-b w-full">Kontakt</header>
|
||||
<a
|
||||
class="link link-hover link-primary flex gap-1 items-center"
|
||||
href="https://swablab.de/lab"
|
||||
>
|
||||
<span class="icon-[ph--house-line-duotone]"></span>
|
||||
Friedrichstraße 17, 72250 Freudenstadt
|
||||
</a>
|
||||
<div class="flex gap-1 items-center">
|
||||
<span class="icon-[ph--mailbox-duotone]"></span>
|
||||
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>
|
||||
{
|
||||
contact.map((e) => (
|
||||
<a
|
||||
class="link link-hover link-primary flex gap-1 items-center"
|
||||
href={e.link}
|
||||
>
|
||||
<span class={e.icon} />
|
||||
{e.name}
|
||||
</a>
|
||||
))
|
||||
}
|
||||
</nav>
|
||||
</footer>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue