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

11
app/app.vue Normal file
View File

@ -0,0 +1,11 @@
<script setup lang="ts">
const defaultOpen = useCookie<boolean>("sidebar_state");
</script>
<template>
<SidebarProvider :defaultOpen="defaultOpen">
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</SidebarProvider>
</template>