Features: - Responsive hero section with animated gradients - Services grid with 6 service cards (Web Dev, UI/UX, Marketing, Mobile, Cloud, Security) - About section with company highlights and stats - Contact form and contact information - Modern dark theme with gradient accents - Fully responsive design - Optimized for Coolify static deployment Tech Stack: - React 18 - TypeScript - Vite - Lucide React icons - CSS custom properties and gradients
13 lines
225 B
TypeScript
13 lines
225 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: 'dist',
|
|
emptyOutDir: true,
|
|
sourcemap: true
|
|
},
|
|
base: './'
|
|
})
|