mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 19:08:09 +00:00
23 lines
704 B
TypeScript
23 lines
704 B
TypeScript
// components/ChatbotWidget.tsx
|
|
import React from "react";
|
|
import { FaComments } from "react-icons/fa";
|
|
|
|
const ChatbotWidget = () => {
|
|
// TODO: Implement actual chat functionality (e.g., integrate a service)
|
|
// const handleChatOpen = () => {
|
|
// alert("Chatbot functionality to be implemented!");
|
|
// };
|
|
|
|
return (
|
|
<button
|
|
// onClick={handleChatOpen}
|
|
className="fixed bottom-6 right-6 bg-primary text-dark p-4 rounded-full shadow-lg hover:bg-primary/90 focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2 transition-all duration-300 z-50"
|
|
aria-label="Open Chat"
|
|
>
|
|
<FaComments size={24} />
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export default ChatbotWidget;
|