A modern web application built with React, TypeScript, and Vite.
- Framework: React + TypeScript
- Build Tool: Vite
- Styling: Tailwind CSS
- State Management: Zustand
- UI Components: Headless UI + Heroicons
Ensure you have Node.js installed on your machine.
-
Clone the repository:
git clone <repository-url> cd ctmelgozasite
-
Install dependencies:
npm install # or yarn install
npm run dev: Starts the development server.npm run build: Compiles the project for production.npm run preview: Previews the built application locally.npm run lint: Runs ESLint to check for code quality issues.
ctmelgozasite/
├── public/ # Static assets
├── src/ # Source code
│ ├── components/ # Reusable UI components
│ ├── App.tsx # Main application component
│ └── main.tsx # Application entry point
├── package.json # Project dependencies and scripts
└── ...