This project is built with:
- Vite
- TypeScript
- React
- shadcn-ui
- Tailwind CSS
All shadcn/ui components have been downloaded under @/components/ui
.
index.html
- HTML entry pointvite.config.ts
- Vite configuration filetailwind.config.js
- Tailwind CSS configuration filepackage.json
- NPM dependencies and scriptssrc/app.tsx
- Root component of the projectsrc/main.tsx
- Project entry pointsrc/index.css
- Existing CSS configuration
- All shadcn/ui components are pre-downloaded and available at
@/components/ui
- Add global styles to
src/index.css
or create new CSS files as needed - Use Tailwind classes for styling components
- Import components from
@/components/ui
in your React components - Customize the UI by modifying the Tailwind configuration
The @/
path alias points to the src/
directory
Install Dependencies
pnpm i
Start Preview
pnpm run dev
To build
pnpm run build