https://github.com/maheshj01/vibe-coding
A set of beginner to advanced React apps built using AI tools
https://github.com/maheshj01/vibe-coding
reactjs redux shadcn-ui tailwindcss template webapps
Last synced: 8 days ago
JSON representation
A set of beginner to advanced React apps built using AI tools
- Host: GitHub
- URL: https://github.com/maheshj01/vibe-coding
- Owner: maheshj01
- Created: 2024-08-28T01:34:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-05-14T02:16:17.000Z (10 months ago)
- Last Synced: 2026-01-27T20:37:56.582Z (about 1 month ago)
- Topics: reactjs, redux, shadcn-ui, tailwindcss, template, webapps
- Language: TypeScript
- Homepage: https://unsplash-lib.vercel.app
- Size: 1.51 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
#### React-Apps
This repo contains basic react apps for beginners. To create a new react app, you can use the `create-react-app.sh` script which will help you setup a new React Project
This script does the following
- Creates a new react app with the name you provide
- Sets up Typescript, TailwindCSS, ShadCN UI, and the following folder structure
```bash
- app
- src
- assets/
- fonts/
- images/
- components/
- ui/
- Button.tsx
- context/
- hooks/
- routes/
- redux/
- actions/
- reducers/
- store.ts
- App.tsx
- index.tsx
- index.css
- utils.ts
- tsconfig.json
- tailwind.config.js
- package.json
- postcss.config.js
- README.md
```
### Usage
To create a new react app, run the following command
```bash
bash create-react-app.sh
```
#### Fixes for Issues in the script
- Use "tailwindcss": "^3.4.10"
This script should run without issueson mac, But when running on Windows with WSL you need to convert the file to Unix format using the following command
```bash
sudo apt-get install dos2unix
dos2unix create.sh
```