├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ai-automations ├── .eslintignore ├── .eslintrc.js ├── .prettierignore ├── README.md ├── components │ └── ui │ │ ├── Button.tsx │ │ ├── Logo.tsx │ │ └── Navbar.tsx ├── example.env ├── functions │ ├── corporate.ts │ ├── credits.ts │ ├── definitions.tsx │ ├── referral.ts │ ├── refund.ts │ └── weather.ts ├── lib │ ├── constants.ts │ ├── toast.ts │ ├── types.ts │ └── utils.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── get-weather.ts │ │ └── zendesk │ │ │ └── [...endpoint].ts │ └── index.tsx ├── postcss.config.js ├── prettier.config.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── avatar.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── logos │ │ └── acme │ │ │ ├── icon-white.svg │ │ │ ├── logo-white.svg │ │ │ └── logo.svg │ └── site.webmanifest ├── styles │ ├── dom.css │ ├── dropdown.css │ ├── globals.css │ └── select.css ├── tailwind.config.ts └── tsconfig.json ├── chatgpt ├── README.md ├── components │ └── icons.tsx ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── global.css │ └── index.tsx ├── pnpm-lock.yaml ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── avatars │ │ ├── logo.png │ │ └── user.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── head.html │ ├── markprompt.svg │ └── site.webmanifest └── tsconfig.json └── ticket-deflector ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── README.md ├── app ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── case-chat.tsx ├── case-form.tsx ├── chat-form-context.tsx ├── chat-scroll-anchor.tsx ├── chat.tsx ├── codeblock.tsx ├── csat-picker.tsx ├── icons.tsx ├── markdown.tsx ├── message-actions.tsx ├── message.tsx ├── messages.tsx ├── prompt-form.tsx ├── providers.tsx ├── search.tsx ├── tool-calls-confirmation.tsx └── ui │ ├── button.tsx │ ├── card.tsx │ ├── form.tsx │ ├── input.tsx │ ├── label.tsx │ ├── select.tsx │ ├── textarea.tsx │ └── tooltip.tsx ├── example.env ├── lib ├── chat.ts ├── common.ts ├── constants.ts ├── hooks │ ├── use-at-bottom.ts │ ├── use-copy-to-clipboard.ts │ └── use-enter-submit.ts ├── ticket.ts └── utils.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── avatars │ ├── logo.png │ └── user.png ├── favicon.ico ├── favicon.png ├── favicon.svg ├── head.html ├── logos │ ├── mindbody.svg │ └── notion.svg └── site.webmanifest ├── styles ├── dom.css ├── dropdown.css ├── globals.css ├── select.css └── ui.css ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/README.md -------------------------------------------------------------------------------- /ai-automations/.eslintignore: -------------------------------------------------------------------------------- 1 | .next/ 2 | -------------------------------------------------------------------------------- /ai-automations/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/.eslintrc.js -------------------------------------------------------------------------------- /ai-automations/.prettierignore: -------------------------------------------------------------------------------- 1 | types/supabase.ts 2 | .next/ 3 | node_modules/ 4 | coverage/ 5 | -------------------------------------------------------------------------------- /ai-automations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/README.md -------------------------------------------------------------------------------- /ai-automations/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/components/ui/Button.tsx -------------------------------------------------------------------------------- /ai-automations/components/ui/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/components/ui/Logo.tsx -------------------------------------------------------------------------------- /ai-automations/components/ui/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/components/ui/Navbar.tsx -------------------------------------------------------------------------------- /ai-automations/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/example.env -------------------------------------------------------------------------------- /ai-automations/functions/corporate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/functions/corporate.ts -------------------------------------------------------------------------------- /ai-automations/functions/credits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/functions/credits.ts -------------------------------------------------------------------------------- /ai-automations/functions/definitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/functions/definitions.tsx -------------------------------------------------------------------------------- /ai-automations/functions/referral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/functions/referral.ts -------------------------------------------------------------------------------- /ai-automations/functions/refund.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/functions/refund.ts -------------------------------------------------------------------------------- /ai-automations/functions/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/functions/weather.ts -------------------------------------------------------------------------------- /ai-automations/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/lib/constants.ts -------------------------------------------------------------------------------- /ai-automations/lib/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/lib/toast.ts -------------------------------------------------------------------------------- /ai-automations/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/lib/types.ts -------------------------------------------------------------------------------- /ai-automations/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/lib/utils.ts -------------------------------------------------------------------------------- /ai-automations/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/next.config.js -------------------------------------------------------------------------------- /ai-automations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/package-lock.json -------------------------------------------------------------------------------- /ai-automations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/package.json -------------------------------------------------------------------------------- /ai-automations/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/pages/_app.tsx -------------------------------------------------------------------------------- /ai-automations/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/pages/_document.tsx -------------------------------------------------------------------------------- /ai-automations/pages/api/get-weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/pages/api/get-weather.ts -------------------------------------------------------------------------------- /ai-automations/pages/api/zendesk/[...endpoint].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/pages/api/zendesk/[...endpoint].ts -------------------------------------------------------------------------------- /ai-automations/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/pages/index.tsx -------------------------------------------------------------------------------- /ai-automations/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/postcss.config.js -------------------------------------------------------------------------------- /ai-automations/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/prettier.config.js -------------------------------------------------------------------------------- /ai-automations/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /ai-automations/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /ai-automations/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/apple-touch-icon.png -------------------------------------------------------------------------------- /ai-automations/public/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/avatar.png -------------------------------------------------------------------------------- /ai-automations/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/favicon.ico -------------------------------------------------------------------------------- /ai-automations/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/favicon.png -------------------------------------------------------------------------------- /ai-automations/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/favicon.svg -------------------------------------------------------------------------------- /ai-automations/public/logos/acme/icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/logos/acme/icon-white.svg -------------------------------------------------------------------------------- /ai-automations/public/logos/acme/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/logos/acme/logo-white.svg -------------------------------------------------------------------------------- /ai-automations/public/logos/acme/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/logos/acme/logo.svg -------------------------------------------------------------------------------- /ai-automations/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/public/site.webmanifest -------------------------------------------------------------------------------- /ai-automations/styles/dom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/styles/dom.css -------------------------------------------------------------------------------- /ai-automations/styles/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/styles/dropdown.css -------------------------------------------------------------------------------- /ai-automations/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/styles/globals.css -------------------------------------------------------------------------------- /ai-automations/styles/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/styles/select.css -------------------------------------------------------------------------------- /ai-automations/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/tailwind.config.ts -------------------------------------------------------------------------------- /ai-automations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ai-automations/tsconfig.json -------------------------------------------------------------------------------- /chatgpt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/README.md -------------------------------------------------------------------------------- /chatgpt/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/components/icons.tsx -------------------------------------------------------------------------------- /chatgpt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/package-lock.json -------------------------------------------------------------------------------- /chatgpt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/package.json -------------------------------------------------------------------------------- /chatgpt/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/pages/_app.tsx -------------------------------------------------------------------------------- /chatgpt/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/pages/_document.tsx -------------------------------------------------------------------------------- /chatgpt/pages/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/pages/global.css -------------------------------------------------------------------------------- /chatgpt/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/pages/index.tsx -------------------------------------------------------------------------------- /chatgpt/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/pnpm-lock.yaml -------------------------------------------------------------------------------- /chatgpt/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /chatgpt/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /chatgpt/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/apple-touch-icon.png -------------------------------------------------------------------------------- /chatgpt/public/avatars/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/avatars/logo.png -------------------------------------------------------------------------------- /chatgpt/public/avatars/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/avatars/user.png -------------------------------------------------------------------------------- /chatgpt/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/favicon.ico -------------------------------------------------------------------------------- /chatgpt/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/favicon.png -------------------------------------------------------------------------------- /chatgpt/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/favicon.svg -------------------------------------------------------------------------------- /chatgpt/public/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/head.html -------------------------------------------------------------------------------- /chatgpt/public/markprompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/markprompt.svg -------------------------------------------------------------------------------- /chatgpt/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/public/site.webmanifest -------------------------------------------------------------------------------- /chatgpt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/chatgpt/tsconfig.json -------------------------------------------------------------------------------- /ticket-deflector/.eslintignore: -------------------------------------------------------------------------------- 1 | .next/ 2 | -------------------------------------------------------------------------------- /ticket-deflector/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/.eslintrc.js -------------------------------------------------------------------------------- /ticket-deflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/.gitignore -------------------------------------------------------------------------------- /ticket-deflector/.prettierignore: -------------------------------------------------------------------------------- 1 | types/supabase.ts 2 | .next/ 3 | node_modules/ 4 | coverage/ 5 | -------------------------------------------------------------------------------- /ticket-deflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/README.md -------------------------------------------------------------------------------- /ticket-deflector/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/app/globals.css -------------------------------------------------------------------------------- /ticket-deflector/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/app/layout.tsx -------------------------------------------------------------------------------- /ticket-deflector/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/app/page.tsx -------------------------------------------------------------------------------- /ticket-deflector/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components.json -------------------------------------------------------------------------------- /ticket-deflector/components/case-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/case-chat.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/case-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/case-form.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/chat-form-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/chat-form-context.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/chat-scroll-anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/chat-scroll-anchor.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/chat.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/codeblock.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/csat-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/csat-picker.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/icons.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/markdown.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/message-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/message-actions.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/message.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/messages.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/prompt-form.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/providers.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/search.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/tool-calls-confirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/tool-calls-confirmation.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/button.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/card.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/form.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/input.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/label.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/select.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/textarea.tsx -------------------------------------------------------------------------------- /ticket-deflector/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /ticket-deflector/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/example.env -------------------------------------------------------------------------------- /ticket-deflector/lib/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/chat.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/common.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/constants.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/hooks/use-at-bottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/hooks/use-at-bottom.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/hooks/use-copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/hooks/use-copy-to-clipboard.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/hooks/use-enter-submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/hooks/use-enter-submit.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/ticket.ts -------------------------------------------------------------------------------- /ticket-deflector/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/lib/utils.ts -------------------------------------------------------------------------------- /ticket-deflector/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/next.config.js -------------------------------------------------------------------------------- /ticket-deflector/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/package-lock.json -------------------------------------------------------------------------------- /ticket-deflector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/package.json -------------------------------------------------------------------------------- /ticket-deflector/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/postcss.config.js -------------------------------------------------------------------------------- /ticket-deflector/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/prettier.config.js -------------------------------------------------------------------------------- /ticket-deflector/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /ticket-deflector/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /ticket-deflector/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/apple-touch-icon.png -------------------------------------------------------------------------------- /ticket-deflector/public/avatars/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/avatars/logo.png -------------------------------------------------------------------------------- /ticket-deflector/public/avatars/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/avatars/user.png -------------------------------------------------------------------------------- /ticket-deflector/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/favicon.ico -------------------------------------------------------------------------------- /ticket-deflector/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/favicon.png -------------------------------------------------------------------------------- /ticket-deflector/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/favicon.svg -------------------------------------------------------------------------------- /ticket-deflector/public/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/head.html -------------------------------------------------------------------------------- /ticket-deflector/public/logos/mindbody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/logos/mindbody.svg -------------------------------------------------------------------------------- /ticket-deflector/public/logos/notion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/logos/notion.svg -------------------------------------------------------------------------------- /ticket-deflector/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/public/site.webmanifest -------------------------------------------------------------------------------- /ticket-deflector/styles/dom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/styles/dom.css -------------------------------------------------------------------------------- /ticket-deflector/styles/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/styles/dropdown.css -------------------------------------------------------------------------------- /ticket-deflector/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/styles/globals.css -------------------------------------------------------------------------------- /ticket-deflector/styles/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/styles/select.css -------------------------------------------------------------------------------- /ticket-deflector/styles/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/styles/ui.css -------------------------------------------------------------------------------- /ticket-deflector/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/tailwind.config.ts -------------------------------------------------------------------------------- /ticket-deflector/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markprompt/templates/HEAD/ticket-deflector/tsconfig.json --------------------------------------------------------------------------------