A modern landing page built with React, Tailwind CSS 4, and Bun.
bun installbun run devThe app will be available at http://localhost:5173
bun run buildbun run preview├── src/
│ ├── components/
│ │ ├── Header.tsx # Header component with mobile menu
│ │ └── Footer.tsx # Footer component
│ ├── App.tsx # Main app component
│ ├── main.tsx # Entry point
│ └── index.css # Global styles with Tailwind
├── index.html
├── package.json
├── tailwind.config.ts # Tailwind configuration
└── vite.config.ts # Vite configuration
The project uses a custom color palette and fonts defined in tailwind.config.ts:
- Colors: haqq-black, haqq-orange, haqq-blue, haqq-seaweed, etc.
- Fonts: guise and clash font families (configured via CSS variables)
- React 18
- TypeScript
- Tailwind CSS 4
- Vite
- Bun