Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<template>
<div>
<div class="row justify-content-center">
<div class="col-12 col-lg-9 col-md-11 col-sm-12 col-xl-8">
<h1 class="h3 fw-bold py-3">Impressum</h1>
<div class="row pt-4">
<div class="col-12">
<h2 class="h4 mt-4">Angaben gem&auml;&szlig; &sect; 5 TMG</h2>
<p>
Robert-Carl Rapp<br>
Sindlingerstr. 23<br>
71083 Herrenberg
</p>
<h2 class="h4 mt-4">Postadresse</h2>
<p>
Sindlingerstr. 23</br>
71083 Herrenberg
</p>
<h2 class="h4 mt-4">Kontakt</h2>
<p>
Telefon: +(49)15784037946<br>
E-Mail: kontakt@mindboost.team
</p>
<p>Quelle: <a href="https://www.e-recht24.de/impressum-generator.html">Generated by eRecht24</a></p>
<h2 class="h4 mt-4">Bildnachweise</h2>
<a href="https://de.vecteezy.com/kostenlos-videos/wei%C3%9F">Weiß Stockvideos von Vecteezy</a>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'SettingPage',
setup () {
const { t } = useI18n()
const localePath = useLocalePath()
return { t, localePath }
}
}
</script>
<style>
</style>