Initial website implementation with Hero section

This commit is contained in:
2026-01-10 01:59:02 +05:00
commit 14909ce480
93 changed files with 3835 additions and 0 deletions

21
app/layouts/default.vue Normal file
View File

@ -0,0 +1,21 @@
<template>
<ClientOnly>
<Sonner />
</ClientOnly>
<div class="flex flex-1">
<div class="w-full">
<header>
<AppHeader />
</header>
<main class="h-screen">
<slot />
</main>
</div>
</div>
</template>
<script setup>
import 'vue-sonner/style.css'
import Sonner from '@/components/ui/sonner/Sonner.vue';
import AppHeader from '@/components/ui/internal/AppHeader.vue';
</script>