first 3D model
All checks were successful
Deploy App / deploy (push) Successful in 1m18s

This commit is contained in:
valere
2025-09-17 23:39:43 +02:00
parent 116d15d1ce
commit 0c1cf30996
28 changed files with 1384 additions and 63 deletions

View File

@@ -1,11 +1,17 @@
<template>
<div class="mt-8 flex flex-wrap justify-center">
<div className="bg-page-dark-bg text-white">
<div className="bg-gradient-to-r from-primary to-primary-dark border-t-2 border-b-2 border-primary">
<div className="mt-8 flex flex-wrap justify-center">
<gameBox />
<div class="flex flex-wrap justify-center">
<div class="bg-page-dark-bg text-white">
<div class="flex flex-col-reverse bg-gradient-to-r from-primary to-primary-dark">
<div class="mt-8 flex flex-wrap justify-center"
v-for="compilation in store.getAllCompilations.slice().reverse()">
<compilationBox :compilation="compilation" template="full" />
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { useDataStore } from '@/store/dataStore'
const store = useDataStore()
</script>