diff --git a/src/app/chat/page.tsx b/src/app/chat/page.tsx index 7f8552c..182f964 100644 --- a/src/app/chat/page.tsx +++ b/src/app/chat/page.tsx @@ -3,13 +3,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { useState } from "react"; -import { Send, User, MessageSquare, Phone } from "lucide-react"; +import { MessageSquare, User } from "lucide-react"; export default function ChatPage() { - const [message, setMessage] = useState(""); - return ( -
-
-
-
- -
-
-

Customer Support

-

Active now

-
-
- -
-
-
- Hello! How can I help you with your order today? -
-
-
-
- Hi, I wanted to ask if I can add extra garlic to my pasta order? -
-
-
- -
- setMessage(e.target.value)} - placeholder="Type a message..." - className="flex-1 bg-background border rounded-full px-6 py-3 outline-none focus:ring-2 focus:ring-accent/20" - /> - -
-
-
+
+ +
); -} \ No newline at end of file +}