├── .gitignore ├── LICENSE ├── README.md ├── app ├── globals.css ├── layout.tsx └── page.tsx ├── components ├── ChatContainer.tsx ├── DeleteIcon.tsx ├── GitHubIcon.tsx ├── InputBox.tsx ├── MessageItem.tsx └── MessageList.tsx ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── types └── global.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/README.md -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/ChatContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/components/ChatContainer.tsx -------------------------------------------------------------------------------- /components/DeleteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/components/DeleteIcon.tsx -------------------------------------------------------------------------------- /components/GitHubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/components/GitHubIcon.tsx -------------------------------------------------------------------------------- /components/InputBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/components/InputBox.tsx -------------------------------------------------------------------------------- /components/MessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/components/MessageItem.tsx -------------------------------------------------------------------------------- /components/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/components/MessageList.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fifteen42/localhostai/HEAD/types/global.d.ts --------------------------------------------------------------------------------