├── .devcontainer └── devcontainer.json ├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── actions └── conversation.jsx ├── app ├── globals.css ├── layout.js └── page.js ├── components ├── ChatArea.jsx ├── Footer.jsx └── functions │ ├── CaptureDetailsForm.jsx │ ├── SlotSelectionForm.jsx │ └── index.js ├── next.config.mjs ├── package.json ├── postcss.config.js ├── tailwind.config.js └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # The ChatBotKit Secret Token 2 | CHATBOTKIT_API_SECRET= 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/README.md -------------------------------------------------------------------------------- /actions/conversation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/actions/conversation.jsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/app/page.js -------------------------------------------------------------------------------- /components/ChatArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/components/ChatArea.jsx -------------------------------------------------------------------------------- /components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/components/Footer.jsx -------------------------------------------------------------------------------- /components/functions/CaptureDetailsForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/components/functions/CaptureDetailsForm.jsx -------------------------------------------------------------------------------- /components/functions/SlotSelectionForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/components/functions/SlotSelectionForm.jsx -------------------------------------------------------------------------------- /components/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/components/functions/index.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatbotkit/example-nextjs-calendar-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------