8 lines
341 B
Vue
8 lines
341 B
Vue
|
|
<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>
|