| | |
| | | "use client"; |
| | | |
| | | import { useState } from 'react'; |
| | | import Sidebar from '@/components/layout/Sidebar'; |
| | | import Card from '@/components/Card'; |
| | | import ChatDialog from '@/components/ChatDialog'; |
| | | import Navbar from '@/components/layout/Navbar'; |
| | | |
| | | const services = [ |
| | | { |
| | |
| | | }; |
| | | |
| | | return ( |
| | | <div className="flex"> |
| | | <Sidebar /> |
| | | <> |
| | | <Navbar /> |
| | | <div className="min-h-screen pt-16"> |
| | | <div className="flex-1 p-6 md:p-8 bg-gradient-to-b from-[var(--ai-surface)] to-white"> |
| | | <div className="max-w-7xl mx-auto"> |
| | | <div className="mb-8"> |
| | |
| | | chatbotId={currentChatbot} |
| | | /> |
| | | </div> |
| | | </> |
| | | ); |
| | | } |