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 configurationsrc/pages/Index.tsx- Home page logic
- All shadcn/ui components are pre-downloaded and available at
@/components/ui
- Add global styles to
src/index.cssor create new CSS files as needed - Use Tailwind classes for styling components
- Import components from
@/components/uiin your React components - Customize the UI by modifying the Tailwind configuration
- The
@/path alias points to thesrc/directory - In your typescript code, don't re-export types that you're already importing
Install Dependencies
pnpm iAdd Dependencies
pnpm add some_new_dependencyStart Preview
pnpm run devTo Build
pnpm run build