├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── components ├── Footer.tsx ├── GitHub.tsx ├── Header.tsx └── LoadingDots.tsx ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── together.ts └── index.tsx ├── postcss.config.js ├── public ├── chat.png ├── favicon.ico ├── og-image.png ├── screenshot.png └── vercel.svg ├── styles ├── globals.css └── loading-dots.module.css ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | TOGETHER_API_KEY= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/README.md -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/components/GitHub.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/LoadingDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/components/LoadingDots.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/together.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/pages/api/together.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/public/chat.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/styles/loading-dots.module.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/chat/HEAD/tsconfig.json --------------------------------------------------------------------------------