├── .env.example ├── .gitignore ├── README.md ├── app ├── (auth) │ ├── layout.tsx │ ├── sign-in │ │ └── page.tsx │ └── sign-up │ │ └── page.tsx ├── actions.ts ├── api │ └── generator │ │ └── route.ts ├── auth │ └── callback │ │ └── route.ts ├── c │ └── [chatId] │ │ └── page.tsx ├── client.tsx ├── confirmation │ └── page.tsx ├── context │ ├── [contextId] │ │ └── page.tsx │ ├── new │ │ └── page.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── pricing │ ├── loading.tsx │ └── page.tsx ├── components.json ├── components ├── chat-interface.tsx ├── checkout-success-handler.tsx ├── content.tsx ├── context-selector-modal.tsx ├── delete-confirmation-modal.tsx ├── ide-interface.tsx ├── pricing-content.tsx ├── settings-modal.tsx ├── sidebar.tsx ├── subcription-actions.tsx └── ui │ ├── alert.tsx │ ├── button.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── scroll-area.tsx │ ├── separator.tsx │ ├── skeleton.tsx │ ├── spinner.tsx │ ├── table.tsx │ ├── tabs.tsx │ └── textarea.tsx ├── eslint.config.mjs ├── lib ├── auth.tsx └── utils.ts ├── middleware.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── setup_db.sql ├── tsconfig.json ├── types └── products.ts ├── updateDocs.md └── utils ├── redirect.ts ├── styles.ts ├── supabase ├── client.ts ├── middleware.ts └── server.ts └── update ├── client.ts └── server.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/(auth)/sign-up/page.tsx -------------------------------------------------------------------------------- /app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/actions.ts -------------------------------------------------------------------------------- /app/api/generator/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/api/generator/route.ts -------------------------------------------------------------------------------- /app/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/auth/callback/route.ts -------------------------------------------------------------------------------- /app/c/[chatId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/c/[chatId]/page.tsx -------------------------------------------------------------------------------- /app/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/client.tsx -------------------------------------------------------------------------------- /app/confirmation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/confirmation/page.tsx -------------------------------------------------------------------------------- /app/context/[contextId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/context/[contextId]/page.tsx -------------------------------------------------------------------------------- /app/context/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/context/new/page.tsx -------------------------------------------------------------------------------- /app/context/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/context/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/pricing/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/pricing/loading.tsx -------------------------------------------------------------------------------- /app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/app/pricing/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components.json -------------------------------------------------------------------------------- /components/chat-interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/chat-interface.tsx -------------------------------------------------------------------------------- /components/checkout-success-handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/checkout-success-handler.tsx -------------------------------------------------------------------------------- /components/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/content.tsx -------------------------------------------------------------------------------- /components/context-selector-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/context-selector-modal.tsx -------------------------------------------------------------------------------- /components/delete-confirmation-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/delete-confirmation-modal.tsx -------------------------------------------------------------------------------- /components/ide-interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ide-interface.tsx -------------------------------------------------------------------------------- /components/pricing-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/pricing-content.tsx -------------------------------------------------------------------------------- /components/settings-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/settings-modal.tsx -------------------------------------------------------------------------------- /components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/sidebar.tsx -------------------------------------------------------------------------------- /components/subcription-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/subcription-actions.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/spinner.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/lib/auth.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /setup_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/setup_db.sql -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/types/products.ts -------------------------------------------------------------------------------- /updateDocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/updateDocs.md -------------------------------------------------------------------------------- /utils/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/redirect.ts -------------------------------------------------------------------------------- /utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/styles.ts -------------------------------------------------------------------------------- /utils/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/supabase/client.ts -------------------------------------------------------------------------------- /utils/supabase/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/supabase/middleware.ts -------------------------------------------------------------------------------- /utils/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/supabase/server.ts -------------------------------------------------------------------------------- /utils/update/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/update/client.ts -------------------------------------------------------------------------------- /utils/update/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyattm14/chatbot-template/HEAD/utils/update/server.ts --------------------------------------------------------------------------------