first init

This commit is contained in:
ISMAIL MASSERAN
2026-06-08 11:37:14 +08:00
commit 94ecbe5887
1058 changed files with 87732 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<script setup lang="ts">
import { Box } from "@/components/ui/box";
</script>
<template>
<Box class="w-full xl:w-1/2">
<div class="text-xl font-medium capitalize border-b border-foreground/15 pb-5">{{ $route.name }}</div>
<div class="mt-16 flex flex-col gap-10">
<RouterView />
</div>
</Box>
</template>