10 lines
341 B
Vue
10 lines
341 B
Vue
|
|
<template>
|
|||
|
|
<div>
|
|||
|
|
<h1 class="text-3xl font-bold text-text mb-4">Kontakt</h1>
|
|||
|
|
<p class="text-text-muted">Kontaktformular wird hier angezeigt.</p>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
<script setup lang="ts">
|
|||
|
|
useHead({ title: "Kontakt – HMS Licht & Ton", meta: [{ name: "robots", content: "noindex, nofollow, noarchive, nosnippet" }] });
|
|||
|
|
</script>
|