32 lines
1.0 KiB
Vue
32 lines
1.0 KiB
Vue
<template>
|
|
<div class="min-h-screen bg-background">
|
|
<header class="border-b">
|
|
<div class="container mx-auto px-4 py-4">
|
|
<h1 class="text-2xl font-bold">Neo Platform</h1>
|
|
</div>
|
|
</header>
|
|
<main class="container mx-auto px-4 py-8">
|
|
<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>
|
|
</main>
|
|
</div>
|
|
</template>
|