An embeddable AI chat assistant for small-business websites. Visitors get instant, accurate answers about the business (menu, hours, location, FAQs) 24/7 — grounded only in the info you give it, so it doesn't make things up.
Live demo: add your Vercel URL here
Built with Next.js + TypeScript + Tailwind, powered by Groq (Llama-3.3-70B).
- Floating chat bubble that drops into any page
- Answers grounded in a single, easy-to-edit knowledge file — no database needed
- Quick-reply suggestion chips
- Replies in the customer's language
- Serverless API route (your API key stays on the server, never in the browser)
Next.js (App Router) · TypeScript · Tailwind CSS · Groq API · deployed on Vercel.
npm install
cp .env.example .env.local # add your GROQ_API_KEY (free: console.groq.com/keys)
npm run dev # http://localhost:3000- Push this repo to GitHub.
- Import it at vercel.com → New Project.
- Add an Environment Variable:
GROQ_API_KEY. - Deploy. That's it.
Edit one file — lib/business.ts:
name,taglinesuggestions(the quick-reply chips)systemInfo— the knowledge block the assistant answers from (hours, menu, FAQs, policies…)
No other code changes needed.
MIT.