Main Site Work

+ Updatet Router
+ "Hauptseite" mit Großem Bild
This commit is contained in:
2025-11-22 17:04:45 +01:00
parent 30eeaabc5a
commit a118026b04
13 changed files with 97 additions and 40 deletions
+17 -4
View File
@@ -1,10 +1,23 @@
<script setup lang="ts">
import { useTheme } from 'vuetify';
const theme = useTheme();
</script>
<template>
<h1>Home Vue</h1>
<h2>Willkommen bei JudoWeb</h2>
<v-container fluid>
<v-img
class="rounded-lg"
height="30vh"
src="/static/images/house/front.jpg"
cover
:gradient="
theme.name.value === 'dark'
? 'rgba(0,0,0,0.5), rgba(0,0,0,0.5)'
: 'rgba(255,255,255,0.5), rgba(255,255,255,0.5)'
"
/>
</v-container>
</template>
<style scoped>
</style>
<style scoped></style>