├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ ├── chat │ │ └── route.ts │ ├── rebyte │ │ └── route.ts │ └── tts │ │ └── route.ts ├── component │ └── useChatWithRebyte.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── bun.lockb ├── next.config.js ├── package.json ├── postcss.config.js ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/README.md -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/rebyte/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/api/rebyte/route.ts -------------------------------------------------------------------------------- /app/api/tts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/api/tts/route.ts -------------------------------------------------------------------------------- /app/component/useChatWithRebyte.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/component/useChatWithRebyte.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/app/page.tsx -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/bun.lockb -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyKok/leaked-zoom/HEAD/tsconfig.json --------------------------------------------------------------------------------