Files
hms-licht-ton/frontend/pages/agb-vermietung.vue
T

8 lines
341 B
Vue
Raw Normal View History

<template>
<LegalContentPage title="AGB Vermietung" :content="content" />
</template>
<script setup lang="ts">
useHead({ title: "AGB Vermietung HMS Licht & Ton", meta: [{ name: "robots", content: "noindex, nofollow, noarchive, nosnippet" }] });
const content = `<p>Allgemeine Geschäftsbedingungen für die Vermietung.</p>`;
</script>