├── .gitignore ├── README.md ├── client ├── .env ├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── .prettierrc ├── index.html ├── package.json ├── postcss.config.js ├── public │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── src │ ├── App.tsx │ ├── assets │ │ ├── error_500.jpg │ │ └── logo.png │ ├── components │ │ ├── ErrorModal.tsx │ │ ├── Explore.tsx │ │ ├── Header.tsx │ │ ├── ImageModal.tsx │ │ └── SizeSelector.tsx │ ├── constant │ │ └── index.ts │ ├── index.css │ ├── main.tsx │ ├── pages │ │ └── Home.tsx │ ├── routes │ │ └── index.tsx │ ├── services │ │ └── image.service.ts │ ├── types │ │ └── types.ts │ ├── utils │ │ ├── axios.ts │ │ └── index.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── package.json ├── server ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── nodemon.json ├── package.json ├── src │ ├── app.ts │ ├── config │ │ ├── config.ts │ │ └── dbConnect.ts │ ├── controller │ │ └── image.controller.ts │ ├── models │ │ └── image.schema.ts │ ├── routes │ │ └── image.route.ts │ ├── service │ │ └── image.service.ts │ ├── types │ │ ├── EnvConfig.ts │ │ └── Image.ts │ └── utils │ │ └── responseHandler.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist-ssr 12 | *.local 13 | 14 | # Editor directories and files 15 | .vscode/* 16 | !.vscode/extensions.json 17 | .idea 18 | .DS_Store 19 | *.suo 20 | *.ntvs* 21 | *.njsproj 22 | *.sln 23 | *.sw? 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AI Image Generator 🔥 2 | 3 | ## Text to image Generator with DALL·E 2 4 | 5 |
6 |
7 |
68 | We are currently experiencing high demand for image 69 | generation service, and as a result, we may be 70 | unable to process your request at this time. Please 71 | try again later. 72 |
73 |70 | So Far, Our platform has produced countless stunning images. 71 | Be amazed by what it can do for You. 72 |
73 |119 | {prompt} 120 |
121 |64 | Unlock your imagination with our platform and witness the 65 | breathtaking power of computer-generated imagery! 66 |
67 |