feat(global): initialize project and framework structure, dockerize

This commit is contained in:
h
2025-09-02 00:03:50 +03:00
parent 3194237f5f
commit 2e9bfc888f
26 changed files with 422 additions and 113 deletions

13
app/pages/index.vue Normal file
View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
import PrimeButtonDemo from '@/components/PrimeButtonDemo.vue';
</script>
<template>
<main class="p-6 space-y-4">
<section>
<h2 class="text-xl font-semibold">Welcome</h2>
<p class="text-slate-600">This is the foundation of The SYSTEM.</p>
</section>
<PrimeButtonDemo />
</main>
</template>