chatbot / app / pages / faqs / page.tsx
page.tsx
Raw
import ChatSection from "../../components/chat-section";

export default function faqs() {
  return (
    <main className="flex min-h-screen flex-col items-center gap-10 p-24 background-gradient">
      <h1>Talk to one of our agents with our costumer service chat</h1>
      <ChatSection />
    </main>
  );
}