├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── src └── app │ ├── api │ └── copilotkit │ │ ├── research.ts │ │ └── route.ts │ ├── components │ ├── CodeTutorial.tsx │ └── Header.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/api/copilotkit/research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/api/copilotkit/research.ts -------------------------------------------------------------------------------- /src/app/api/copilotkit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/api/copilotkit/route.ts -------------------------------------------------------------------------------- /src/app/components/CodeTutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/components/CodeTutorial.tsx -------------------------------------------------------------------------------- /src/app/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/components/Header.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGreatBonnie/AIPoweredUIComponentsGenerator/HEAD/tsconfig.json --------------------------------------------------------------------------------