diff --git a/src/components/Impress.tsx b/src/components/Impress.tsx new file mode 100644 index 0000000..7bb97a3 --- /dev/null +++ b/src/components/Impress.tsx @@ -0,0 +1,38 @@ +import { createSignal } from "solid-js" + +const [phone, setPhone] = createSignal('') +const [email, setEmail] = createSignal('') + +export const ImpressComponent = (props: { email, phoneNumber }) => { + + setTimeout(() => { + setPhone(atob(props.phoneNumber)) + setEmail(atob(props.email)) + }, 1000); + + return ( +
+

Impressum

+

Angaben gemäß § 5 TMG

+

Dominik Strangas
80937 München

+ Vertreten durch:
Dominik Strangas
Kontakt:
+ +
+ Telefon: {phone()} +
+
+
+ +
+ E-Mail: {email()} +
+
+
Umsatzsteuer-ID: +

+ Umsatzsteuer-Identifikationsnummer gemäß §27a Umsatzsteuergesetz: Musterustid. Wirtschafts-ID: + Musterwirtschaftsid +

+
+ ) +} \ No newline at end of file diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index 28c4934..6d09333 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -7,6 +7,7 @@ const setShowMobileNav = (val: boolean) => showMobileNav(val); export const Navigation = () => { return ( <> +