add: imp, privacy

Add imprint and privacy stuff
This commit is contained in:
Fiona Lena Urban 2025-04-21 09:53:25 +02:00
parent 85e6035a9a
commit eabd67f93e
7 changed files with 4948 additions and 2144 deletions

72
app/pages/imprint.vue Normal file
View file

@ -0,0 +1,72 @@
<template>
<div>
<section class="Imp flex-col gap-default content full">
<div>
<p>
Fiona Lena Urban<br/>
Fiona Urban aka webfussel<br/>
Teich&auml;ckerweg 39<br/>
76297 Stutensee
</p>
</div>
<div>
<h3>Kontakt</h3>
<ClientOnly>
<p>
Telefon: 017631640961<br/>
E-Mail: fiona@webfussel.de
</p>
</ClientOnly>
</div>
<div>
<h3>Umsatzsteuer-ID</h3>
<p>
Umsatzsteuer-Identifikationsnummer gem&auml;&szlig; &sect; 27 a Umsatzsteuergesetz:<br/>
DE348500161
</p>
</div>
<div>
<h3>Angaben zur Berufs&shy;haftpflicht&shy;versicherung</h3>
<p>
<strong>Name und Sitz des Versicherers:</strong><br/>
Hiscox SA<br/>
Arnulfstr. 31<br/>
80636 M&uuml;nchen
</p>
<p>
<strong>Geltungsraum der Versicherung:</strong><br/>
Bundesrepublik Deutschland
</p>
</div>
<div>
<h3>Redaktionell verantwortlich</h3>
<p>Fiona Lena Urban</p>
</div>
<div>
<h3>Verbraucher&shy;streit&shy;beilegung / Universal&shy;schlichtungs&shy;stelle</h3>
<p>
Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer
Verbraucherschlichtungsstelle teilzunehmen.
</p>
</div>
<div class="flex-col gap-default">
<h3>Quellenangaben</h3>
<div>
<h4>Impressumstext</h4>
<p>Quelle: <a href="https://www.e-recht24.de">e-recht24.de</a></p>
</div>
</div>
</section>
</div>
</template>
<script setup lang="ts">
useSeoMeta({
robots: 'noindex, nofollow',
})
</script>