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