├── .gitignore ├── Backend ├── .env.example ├── Readme.md ├── package-lock.json ├── package.json ├── src │ ├── config │ │ └── environment.ts │ ├── constants.ts │ ├── defaults │ │ ├── node.ts │ │ └── react.ts │ ├── index.ts │ ├── prompts.ts │ ├── routes │ │ ├── chat.ts │ │ └── template.ts │ ├── services │ │ └── ai.service.ts │ ├── stripindents.ts │ └── types │ │ └── index.ts ├── tsconfig.json ├── tsconfig.tsbuildinfo └── vercel.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Frontend ├── .gitignore ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.css │ ├── App.tsx │ ├── Providers │ │ └── LenisProvider.tsx │ ├── assets │ │ └── image.png │ ├── components │ │ ├── BackgroundElements.tsx │ │ ├── CodeEditor.tsx │ │ ├── FaqSection.tsx │ │ ├── FeaturesSection.tsx │ │ ├── FileExplorer.tsx │ │ ├── Footer.tsx │ │ ├── HeroSection.tsx │ │ ├── Loader.tsx │ │ ├── Navbar.tsx │ │ ├── PreviewFrame.tsx │ │ ├── StepsList.tsx │ │ ├── TabView.tsx │ │ └── Works.tsx │ ├── config.ts │ ├── context │ │ └── AppContext.tsx │ ├── hooks │ │ └── useWebContainer.tsx │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── Builder.tsx │ │ └── Home.tsx │ ├── services │ │ └── api.ts │ ├── steps.ts │ ├── styles │ │ └── main.css │ ├── types │ │ └── index.ts │ ├── utils │ │ ├── cn.ts │ │ └── fileDownloader.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts ├── LICENSE ├── README.md └── SECURITY.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env -------------------------------------------------------------------------------- /Backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/.env.example -------------------------------------------------------------------------------- /Backend/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/Readme.md -------------------------------------------------------------------------------- /Backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/package-lock.json -------------------------------------------------------------------------------- /Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/package.json -------------------------------------------------------------------------------- /Backend/src/config/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/config/environment.ts -------------------------------------------------------------------------------- /Backend/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/constants.ts -------------------------------------------------------------------------------- /Backend/src/defaults/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/defaults/node.ts -------------------------------------------------------------------------------- /Backend/src/defaults/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/defaults/react.ts -------------------------------------------------------------------------------- /Backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/index.ts -------------------------------------------------------------------------------- /Backend/src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/prompts.ts -------------------------------------------------------------------------------- /Backend/src/routes/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/routes/chat.ts -------------------------------------------------------------------------------- /Backend/src/routes/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/routes/template.ts -------------------------------------------------------------------------------- /Backend/src/services/ai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/services/ai.service.ts -------------------------------------------------------------------------------- /Backend/src/stripindents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/stripindents.ts -------------------------------------------------------------------------------- /Backend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/src/types/index.ts -------------------------------------------------------------------------------- /Backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/tsconfig.json -------------------------------------------------------------------------------- /Backend/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /Backend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Backend/vercel.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/README.md -------------------------------------------------------------------------------- /Frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/components.json -------------------------------------------------------------------------------- /Frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/eslint.config.js -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/index.html -------------------------------------------------------------------------------- /Frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/package-lock.json -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/App.tsx -------------------------------------------------------------------------------- /Frontend/src/Providers/LenisProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/Providers/LenisProvider.tsx -------------------------------------------------------------------------------- /Frontend/src/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/assets/image.png -------------------------------------------------------------------------------- /Frontend/src/components/BackgroundElements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/BackgroundElements.tsx -------------------------------------------------------------------------------- /Frontend/src/components/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/CodeEditor.tsx -------------------------------------------------------------------------------- /Frontend/src/components/FaqSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/FaqSection.tsx -------------------------------------------------------------------------------- /Frontend/src/components/FeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/FeaturesSection.tsx -------------------------------------------------------------------------------- /Frontend/src/components/FileExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/FileExplorer.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /Frontend/src/components/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/HeroSection.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/Loader.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/Navbar.tsx -------------------------------------------------------------------------------- /Frontend/src/components/PreviewFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/PreviewFrame.tsx -------------------------------------------------------------------------------- /Frontend/src/components/StepsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/StepsList.tsx -------------------------------------------------------------------------------- /Frontend/src/components/TabView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/TabView.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/components/Works.tsx -------------------------------------------------------------------------------- /Frontend/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/config.ts -------------------------------------------------------------------------------- /Frontend/src/context/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/context/AppContext.tsx -------------------------------------------------------------------------------- /Frontend/src/hooks/useWebContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/hooks/useWebContainer.tsx -------------------------------------------------------------------------------- /Frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/index.css -------------------------------------------------------------------------------- /Frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /Frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/main.tsx -------------------------------------------------------------------------------- /Frontend/src/pages/Builder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/pages/Builder.tsx -------------------------------------------------------------------------------- /Frontend/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/pages/Home.tsx -------------------------------------------------------------------------------- /Frontend/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/services/api.ts -------------------------------------------------------------------------------- /Frontend/src/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/steps.ts -------------------------------------------------------------------------------- /Frontend/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/styles/main.css -------------------------------------------------------------------------------- /Frontend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/types/index.ts -------------------------------------------------------------------------------- /Frontend/src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/utils/cn.ts -------------------------------------------------------------------------------- /Frontend/src/utils/fileDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/src/utils/fileDownloader.ts -------------------------------------------------------------------------------- /Frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/tailwind.config.js -------------------------------------------------------------------------------- /Frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/tsconfig.app.json -------------------------------------------------------------------------------- /Frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/tsconfig.json -------------------------------------------------------------------------------- /Frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/tsconfig.node.json -------------------------------------------------------------------------------- /Frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/vercel.json -------------------------------------------------------------------------------- /Frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/Frontend/vite.config.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PankajKumardev/Bolt-Clone/HEAD/SECURITY.md --------------------------------------------------------------------------------