A comprehensive collection of meticulously crafted React components for web styled with Tailwind CSS and Framer Motion
.
├── .git
├── .turbo
├── .vscode
├── apps
│ └── website (Next.js application)
│ ├── .next
│ ├── .turbo
│ ├── components
│ ├── node_modules
│ ├── pages
│ ├── public
│ ├── styles
│ ├── .eslintrc.json
│ ├── .gitignore
│ ├── README.md
│ ├── next-env.d.ts
│ ├── next.config.mjs
│ ├── package.json
│ ├── postcss.config.mjs
│ ├── tailwind.config.ts
│ ├── theme.config.tsx
│ └── tsconfig.json
├── node_modules
├── packages
│ ├── config-eslint
│ ├── config-tailwind
│ ├── config-typescript
│ └── ui
├── .gitignore
├── .npmrc
├── README.md
├── package.json
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
└── turbo.json
- Clone the repository
- Install dependencies:
pnpm install
- Run the development server:
pnpm dev
pnpm dev
: Starts the development serverpnpm build
: Builds the projectpnpm start
: Starts the production serverpnpm lint
: Runs linting
apps/website
: Contains the Next.js website applicationpackages
: Shared packages and configurationsconfig-eslint
: ESLint configurationconfig-tailwind
: Tailwind CSS configurationconfig-typescript
: TypeScript configurationui
: Shared UI components