15 lines
194 B
Vue
Executable File
15 lines
194 B
Vue
Executable File
<template>
|
|
<div class="min-h-full">
|
|
<About />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import About from '~/components/About.vue'
|
|
|
|
useHead({
|
|
title: 'Über uns - Harheimer TC',
|
|
})
|
|
</script>
|
|
|