├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── BackButton.tsx ├── ImageDownloadButton.tsx └── LoadingSpinner.tsx ├── containers ├── About.tsx ├── FAQ.tsx ├── Generate.tsx ├── Hero.tsx └── Navbar.tsx ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── ImageDownload.ts │ ├── SendPrompt.ts │ └── hello.ts ├── generate │ └── index.tsx └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── github.svg ├── hero_bg.jpeg ├── key_ai.png └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/README.md -------------------------------------------------------------------------------- /components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/components/BackButton.tsx -------------------------------------------------------------------------------- /components/ImageDownloadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/components/ImageDownloadButton.tsx -------------------------------------------------------------------------------- /components/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/components/LoadingSpinner.tsx -------------------------------------------------------------------------------- /containers/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/containers/About.tsx -------------------------------------------------------------------------------- /containers/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/containers/FAQ.tsx -------------------------------------------------------------------------------- /containers/Generate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/containers/Generate.tsx -------------------------------------------------------------------------------- /containers/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/containers/Hero.tsx -------------------------------------------------------------------------------- /containers/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/containers/Navbar.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/ImageDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/pages/api/ImageDownload.ts -------------------------------------------------------------------------------- /pages/api/SendPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/pages/api/SendPrompt.ts -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/generate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/pages/generate/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/public/github.svg -------------------------------------------------------------------------------- /public/hero_bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/public/hero_bg.jpeg -------------------------------------------------------------------------------- /public/key_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/public/key_ai.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/47Key/AI_Image_Generator/HEAD/tsconfig.json --------------------------------------------------------------------------------