15 lines
200 B
Vue
Executable File
15 lines
200 B
Vue
Executable File
<template>
|
|
<div class="min-h-screen">
|
|
<Contact />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Contact from '~/components/Contact.vue'
|
|
|
|
useHead({
|
|
title: 'Kontakt - Harheimer TC',
|
|
})
|
|
</script>
|
|
|