├── .example.env ├── .gitignore ├── LICENSE ├── README.md ├── app ├── dream │ └── page.tsx ├── generate │ └── route.ts ├── layout.tsx └── page.tsx ├── components ├── CompareSlider.tsx ├── DropDown.tsx ├── Footer.tsx ├── Header.tsx ├── LoadingDots.tsx ├── ResizablePanel.tsx ├── SquigglyLines.tsx └── Toggle.tsx ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── 1-black.png ├── bed.svg ├── favicon.ico ├── generated-pic-2.jpg ├── generated-pic.png ├── generatedpic.png ├── number-1-white.svg ├── number-2-white.svg ├── number-3-white.svg ├── og-image.png ├── original-pic.jpg ├── screenshot.png ├── vercel.svg ├── vercelLogo.png └── vercelLogo.svg ├── styles ├── globals.css └── loading-dots.module.css ├── tailwind.config.js ├── tsconfig.json └── utils ├── appendNewToName.ts ├── downloadPhoto.ts ├── dropdownTypes.ts └── redis.ts /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/README.md -------------------------------------------------------------------------------- /app/dream/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/app/dream/page.tsx -------------------------------------------------------------------------------- /app/generate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/app/generate/route.ts -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/CompareSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/CompareSlider.tsx -------------------------------------------------------------------------------- /components/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/DropDown.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/LoadingDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/LoadingDots.tsx -------------------------------------------------------------------------------- /components/ResizablePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/ResizablePanel.tsx -------------------------------------------------------------------------------- /components/SquigglyLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/SquigglyLines.tsx -------------------------------------------------------------------------------- /components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/components/Toggle.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/1-black.png -------------------------------------------------------------------------------- /public/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/bed.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/generated-pic-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/generated-pic-2.jpg -------------------------------------------------------------------------------- /public/generated-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/generated-pic.png -------------------------------------------------------------------------------- /public/generatedpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/generatedpic.png -------------------------------------------------------------------------------- /public/number-1-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/number-1-white.svg -------------------------------------------------------------------------------- /public/number-2-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/number-2-white.svg -------------------------------------------------------------------------------- /public/number-3-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/number-3-white.svg -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/original-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/original-pic.jpg -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/vercelLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/vercelLogo.png -------------------------------------------------------------------------------- /public/vercelLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/public/vercelLogo.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/styles/loading-dots.module.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/appendNewToName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/utils/appendNewToName.ts -------------------------------------------------------------------------------- /utils/downloadPhoto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/utils/downloadPhoto.ts -------------------------------------------------------------------------------- /utils/dropdownTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/utils/dropdownTypes.ts -------------------------------------------------------------------------------- /utils/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/roomGPT/HEAD/utils/redis.ts --------------------------------------------------------------------------------