41 lines
774 B
Vue
41 lines
774 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
t: (key: string) => string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<section id="impressum" class="glass-section container legal-section">
|
|
<h2>{{ t('impressum.title') }}</h2>
|
|
<div class="content-text">
|
|
<p>{{ t('impressum.content') }}</p>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.legal-section {
|
|
margin-top: 60px;
|
|
background: rgba(0, 0, 0, 0.02);
|
|
border: var(--glass-border);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
border-radius: 12px;
|
|
padding: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 15px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.content-text {
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
white-space: pre-line;
|
|
opacity: 0.8;
|
|
}
|
|
</style>
|