diff --git a/README.md b/README.md index 9875173..34a2f26 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ npm run dev After generation, your project will have the following structure: +- For Typescript project ```bash my-app/ @@ -66,13 +67,48 @@ After generation, your project will have the following structure: ├── src/ │ ├── components/ │ │ └── Hero.tsx + │ │ └── index.tsx │ ├── pages/ + │ │ └── _app.tsx │ │ └── index.tsx │ └── styles/ │ └── global.css + ├── .gitignore + ├── eslint.config.mjs + ├── next-env.d.ts + ├── next.config.ts + ├── package-lock.json + ├── package.json + ├── postcss.config.js + ├── README.md ├── tailwind.config.js + └── tsconfig.json + +``` +- For Javascript project +```bash + + my-app/ + ├── public/ + ├── src/ + │ ├── components/ + │ │ └── Hero.jsx + │ │ └── index.jsx + │ ├── pages/ + │ │ └── _app.jsx + │ │ └── index.jsx + │ └── styles/ + │ └── global.css + ├── .gitignore + ├── eslint.config.mjs + ├── next-env.d.ts + ├── next.config.mjs + ├── package-lock.json + ├── package.json ├── postcss.config.js - └── package.json + ├── README.md + ├── tailwind.config.js + └── jsconfig.json ``` @@ -80,9 +116,8 @@ After generation, your project will have the following structure: ## 🛠 Tech Stack Node.js (ESM) -- prompts for interactive input - -- create-next-app for project generation (Next.js 15+) +- prompts for interactive input +- create-next-app for project generation (Next.js 15+) ## Contributing