├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── Banner │ └── OverloadBanner.tsx ├── Layout │ ├── RootLayout │ │ ├── ColorSchemeSwitch.tsx │ │ ├── GitHubIcon.tsx │ │ ├── Header.tsx │ │ └── index.tsx │ └── index.tsx ├── Messages │ ├── MdRenderer.tsx │ ├── index.tsx │ └── lib │ │ ├── copy-to-clipboard.tsx │ │ └── remark-super.ts ├── Providers │ ├── JotaiProvider │ │ └── index.tsx │ ├── ModalProvider │ │ └── index.tsx │ ├── MotionProvider │ │ ├── features.ts │ │ └── index.tsx │ ├── NotificationProvider │ │ └── index.tsx │ ├── ThemeProvider │ │ └── index.tsx │ └── index.tsx └── SendBox │ ├── ClearIcon.tsx │ └── index.tsx ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── next.svg ├── thirteen.svg └── vercel.svg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── utils ├── api.ts ├── example.ts └── store.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/README.md -------------------------------------------------------------------------------- /components/Banner/OverloadBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Banner/OverloadBanner.tsx -------------------------------------------------------------------------------- /components/Layout/RootLayout/ColorSchemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Layout/RootLayout/ColorSchemeSwitch.tsx -------------------------------------------------------------------------------- /components/Layout/RootLayout/GitHubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Layout/RootLayout/GitHubIcon.tsx -------------------------------------------------------------------------------- /components/Layout/RootLayout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Layout/RootLayout/Header.tsx -------------------------------------------------------------------------------- /components/Layout/RootLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Layout/RootLayout/index.tsx -------------------------------------------------------------------------------- /components/Layout/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./RootLayout"; 2 | -------------------------------------------------------------------------------- /components/Messages/MdRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Messages/MdRenderer.tsx -------------------------------------------------------------------------------- /components/Messages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Messages/index.tsx -------------------------------------------------------------------------------- /components/Messages/lib/copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Messages/lib/copy-to-clipboard.tsx -------------------------------------------------------------------------------- /components/Messages/lib/remark-super.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Messages/lib/remark-super.ts -------------------------------------------------------------------------------- /components/Providers/JotaiProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/JotaiProvider/index.tsx -------------------------------------------------------------------------------- /components/Providers/ModalProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/ModalProvider/index.tsx -------------------------------------------------------------------------------- /components/Providers/MotionProvider/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/MotionProvider/features.ts -------------------------------------------------------------------------------- /components/Providers/MotionProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/MotionProvider/index.tsx -------------------------------------------------------------------------------- /components/Providers/NotificationProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/NotificationProvider/index.tsx -------------------------------------------------------------------------------- /components/Providers/ThemeProvider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/ThemeProvider/index.tsx -------------------------------------------------------------------------------- /components/Providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/Providers/index.tsx -------------------------------------------------------------------------------- /components/SendBox/ClearIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/SendBox/ClearIcon.tsx -------------------------------------------------------------------------------- /components/SendBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/components/SendBox/index.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/utils/api.ts -------------------------------------------------------------------------------- /utils/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/utils/example.ts -------------------------------------------------------------------------------- /utils/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songkeys/bing-chat/HEAD/utils/store.ts --------------------------------------------------------------------------------