This commit is contained in:
2026-02-07 11:47:19 +02:00
parent 06d485e63a
commit 3f57515f20
11 changed files with 65 additions and 10 deletions
+37 -1
View File
@@ -1,5 +1,41 @@
<template>
<Home />
<v-container fluid>
<v-row dense>
<v-col>
<v-card to="/manage/game-objects/list" class="hover-effect">
<v-img src="/static/header-game-objects.webp" cover content-class="d-flex flex-column justify-space-between" gradient="to bottom, rgba(0,0,0,0), rgba(0,0,0,.5)">
<v-btn icon="mdi-plus" class="align-self-end ma-3" to="/manage/game-objects/add" color="white" size="small" v-tooltip="l.createGameObject"></v-btn>
<v-card-title class="text-white text-h5" v-text="l.gameObjects"></v-card-title>
</v-img>
</v-card>
</v-col>
<v-col>
<v-card to="/manage/scenarios/list" class="hover-effect">
<v-img src="/static/header-scenarios.webp" cover content-class="d-flex flex-column justify-space-between"gradient="to bottom, rgba(0,0,0,0), rgba(0,0,0,.5)">
<v-btn icon="mdi-plus" class="align-self-end ma-3" to="/manage/scenarios/add" color="white" size="small" v-tooltip="l.createScenario"></v-btn>
<v-card-title class="text-white text-h5" v-text="l.gameScenarios"></v-card-title>
</v-img>
</v-card>
</v-col>
<v-col>
<v-card to="/manage/games/list" class="hover-effect">
<v-img src="/static/header-studio.webp" cover content-class="d-flex flex-column justify-space-between"gradient="to bottom, rgba(0,0,0,0), rgba(0,0,0,.5)">
<v-btn icon="mdi-plus" class="align-self-end ma-3" to="/manage/games/add" color="white" size="small" v-tooltip="l.createGame"></v-btn>
<v-card-title class="text-white text-h5" v-text="l.games"></v-card-title>
</v-img>
</v-card>
</v-col>
<v-col>
<v-card to="/manage/preview/list" class="hover-effect">
<v-img src="/static/header-preview.webp" cover content-class="d-flex flex-column justify-space-between"gradient="to bottom, rgba(0,0,0,0), rgba(0,0,0,.5)">
<v-btn icon="mdi-arrow-right" class="align-self-end ma-3" to="/manage/preview/list" color="white" size="small" v-tooltip="l.preview"></v-btn>
<v-card-title class="text-white text-h5" v-text="l.preview"></v-card-title>
</v-img>
</v-card>
</v-col>
</v-row>
</v-container>
</template>
<script setup>