52 lines
1.3 KiB
Vue
52 lines
1.3 KiB
Vue
<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äß § 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>
|