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

17
nuxt.config.ts Normal file
View File

@ -0,0 +1,17 @@
import tailwindcss from '@tailwindcss/vite'
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
css: ['~/assets/css/tailwind.css'],
modules: ['shadcn-nuxt', '@nuxt/image'],
vite: {
plugins: [
tailwindcss(),
],
},
shadcn: {
prefix: '',
componentDir: '@/components/ui'
}
})