├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── Answer │ ├── Answer.tsx │ └── answer.module.css ├── Footer.tsx └── Navbar.tsx ├── license ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ ├── answer.ts │ └── search.ts └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── king.png └── wbw.png ├── schema.sql ├── scripts ├── embed.ts ├── images.json ├── images.ts ├── scrape.ts └── wbw.json ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types └── index.ts └── utils ├── images.ts └── index.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/README.md -------------------------------------------------------------------------------- /components/Answer/Answer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/components/Answer/Answer.tsx -------------------------------------------------------------------------------- /components/Answer/answer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/components/Answer/answer.module.css -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/license -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/answer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/pages/api/answer.ts -------------------------------------------------------------------------------- /pages/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/pages/api/search.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/public/king.png -------------------------------------------------------------------------------- /public/wbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/public/wbw.png -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/schema.sql -------------------------------------------------------------------------------- /scripts/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/scripts/embed.ts -------------------------------------------------------------------------------- /scripts/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/scripts/images.json -------------------------------------------------------------------------------- /scripts/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/scripts/images.ts -------------------------------------------------------------------------------- /scripts/scrape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/scripts/scrape.ts -------------------------------------------------------------------------------- /scripts/wbw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/scripts/wbw.json -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/types/index.ts -------------------------------------------------------------------------------- /utils/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/utils/images.ts -------------------------------------------------------------------------------- /utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/wait-but-why-gpt/HEAD/utils/index.ts --------------------------------------------------------------------------------