├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── components │ ├── About.jsx │ ├── ChatModal.jsx │ ├── Feature.jsx │ ├── Footer.jsx │ ├── Founders.jsx │ ├── GoogleSignInButton.jsx │ ├── Header.jsx │ ├── Hero.jsx │ ├── Pricing.jsx │ ├── Testimonial.jsx │ ├── sign-in │ │ └── page.jsx │ └── sign-up │ │ └── page.jsx ├── favicon.ico ├── firebase │ └── config.jsx ├── globals.css ├── layout.jsx ├── page.jsx ├── sign-in │ └── page.jsx └── sign-up │ └── page.jsx ├── jsconfig.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public ├── background-backup.jpg ├── background.jpg ├── background2.jpg ├── himel.jpg ├── mehreen.jpg ├── obidur.jpg └── zaynul.jpg ├── tailwind.config.js └── theme.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HelpBot 2 | 3 | HelpBot is a cutting-edge AI customer support chatbot built using Next.js and Material-UI (MUI). HelpBot provides a user-friendly and engaging experience for customers seeking assistance. 4 | 5 | Created with 6 | - Next.js 7 | - Tailwind CSS 8 | - Daisy UI 9 | -------------------------------------------------------------------------------- /app/components/About.jsx: -------------------------------------------------------------------------------- 1 | const About = () => { 2 | return ( 3 |
9 | HelpBot is an AI-driven customer support platform designed to enhance 10 | your customer service experience. We provide businesses with a 11 | powerful tool that ensures satisfaction through instant, accurate, and 12 | personalized responses. With 24/7 availability and seamless 13 | integration, HelpBot is the ultimate solution for modern customer 14 | support needs. 15 |
16 |Hello! How can I help you today?
25 |{feature.description}
25 |{founder.role}
30 |Your personalized AI assistant.
29 | 35 |Free
11 |12 | Essential features for small businesses. 13 |
14 | Get Started 15 |$49/month
23 |24 | Advanced features for growing businesses. 25 |
26 | Choose Plan 27 |$99/month
35 |36 | All features for large enterprises. 37 |
38 | Choose Plan 39 |29 | {testimonial.feedback} 30 |
31 |78 | {error.message} 79 |
80 | )} 81 | 88 |120 | Password strength: {strengthLabel} 121 |
122 |127 | {error.message} 128 |
129 | )} 130 | 137 |79 | {error.message} 80 |
81 | )} 82 | 89 |90 | Don't have an account?{' '} 91 | Sign Up 92 |
93 |105 | {error.message} 106 |
107 | )} 108 | 115 |116 | Already have an account?{' '} 117 | Sign In 118 |
119 |