Files
neo/frontend/pages/index.vue

28 lines
821 B
Vue

<script setup lang="ts">
</script>
<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>