This repository has been archived on 2025-12-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Caramel-CRM-Backup/resources/js/pages/Achievements.vue
T

25 lines
876 B
Vue
Raw Normal View History

2025-10-20 08:57:51 +02:00
<script setup lang="ts">
import PlaceholderPattern from '../components/PlaceholderPattern.vue';
2025-11-18 10:27:49 +01:00
import AppLayout from '@/layouts/AppLayout.vue';
2025-10-20 08:57:51 +02:00
</script>
<template>
2025-11-14 17:45:57 +01:00
<AppLayout title="Erfolge">
<div>
<h1 class="text-xl">Kategorie</h1>
<h2 class="text-sm text-neutral-400 mb-4">3 von 10 freigeschaltet</h2>
2025-10-20 08:57:51 +02:00
2025-11-14 17:45:57 +01:00
<div class="flex flex-row flex-wrap gap-4">
<div v-for="n in 10" class="relative flex flex-col items-center">
<div
class="w-48 relative aspect-square overflow-hidden rounded-full border border-sidebar-border/70 dark:border-sidebar-border">
<PlaceholderPattern />
2025-10-20 08:57:51 +02:00
</div>
2025-11-18 10:27:49 +01:00
<label class="">Erfolg {{ n }}</label>
2025-10-20 08:57:51 +02:00
</div>
</div>
</div>
</AppLayout>
</template>