├── .envExample ├── .eslintrc.json ├── .gitignore ├── README.md ├── helpers └── prompts.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── generate.ts └── index.tsx ├── public ├── default.png ├── favicon.ico └── logo.png ├── styles ├── globals.css └── harry.woff └── tsconfig.json /.envExample: -------------------------------------------------------------------------------- 1 | LEAP_API_KEY=enter-your-key-here -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/README.md -------------------------------------------------------------------------------- /helpers/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/helpers/prompts.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/pages/api/generate.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/public/default.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/public/logo.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/harry.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/styles/harry.woff -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleemrehmtulla/generatepotter/HEAD/tsconfig.json --------------------------------------------------------------------------------