Files
neo/frontend/pages/index.vue
Francisco Gaona a6f1da28b2 Code formatting
2025-11-25 23:17:54 +01:00

25 lines
785 B
Vue

<template>
<NuxtLayout name="default">
<div class="text-center space-y-6">
<h2 class="text-4xl font-bold">Welcome to Neo Platform</h2>
<p class="text-muted-foreground text-lg">
Multi-tenant application platform for building CRM, Project Management, and more
</p>
<div class="flex gap-4 justify-center">
<NuxtLink
to="/setup/apps"
class="px-6 py-3 bg-primary text-primary-foreground rounded-md hover:bg-primary/90"
>
Setup Apps
</NuxtLink>
<NuxtLink
to="/setup/objects"
class="px-6 py-3 bg-secondary text-secondary-foreground rounded-md hover:bg-secondary/90"
>
Setup Objects
</NuxtLink>
</div>
</div>
</NuxtLayout>
</template>