A modern web application built with Next.js 15 and Tailwind CSS 3.4, featuring the latest design utilities and performance optimizations.
- ⚡ Next.js 15 with App Router and Turbopack
- 🎨 Tailwind CSS 3.4 with latest features including color-mix utilities
- 🔧 TypeScript for type safety
- 🌙 Dark Mode support
- 📱 Responsive Design with modern UI components
- ⚡ Fast Development with hot reload
- Node.js 18+
- npm or yarn
- Clone the repository:
git clone <your-repo-url>
cd strativa- Install dependencies:
npm install- Run the development server:
npm run dev- Open http://localhost:3000 in your browser.
npm run dev- Start development server with Turbopacknpm run build- Build for productionnpm run start- Start production servernpm run lint- Run ESLint
This project showcases several Tailwind CSS 3.4 features:
- Color Mix Utilities: Using
color-mix()function for dynamic color blending - Modern Gradients: Beautiful gradient backgrounds and text
- Enhanced Hover Effects: Smooth transitions and transforms
- Dark Mode Support: Automatic dark/light theme switching
- Responsive Design: Mobile-first responsive utilities
src/
├── app/
│ ├── globals.css # Global styles with Tailwind directives
│ ├── layout.tsx # Root layout component
│ └── page.tsx # Home page with Tailwind demo
├── components/ # Reusable components (create as needed)
└── lib/ # Utility functions (create as needed)
The Tailwind configuration is in tailwind.config.js. You can customize:
- Color palette
- Typography
- Spacing
- Breakpoints
- Custom utilities
Create new components in the src/components/ directory and import them in your pages.
This project can be deployed to Vercel, Netlify, or any other hosting platform that supports Next.js.
MIT