├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ └── copilotkit │ │ └── route.js ├── favicon.ico ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff ├── globals.css ├── layout.js └── page.js ├── components └── Navbar.js ├── jsconfig.json ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/README.md -------------------------------------------------------------------------------- /app/api/copilotkit/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/api/copilotkit/route.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/app/page.js -------------------------------------------------------------------------------- /components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/components/Navbar.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/ai-powered-todo-list/HEAD/tailwind.config.js --------------------------------------------------------------------------------