Files
SYSTEM/app/pages/index.vue

14 lines
344 B
Vue

<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>