diff --git a/components/contact.tsx b/components/contact.tsx new file mode 100644 index 0000000..333219f --- /dev/null +++ b/components/contact.tsx @@ -0,0 +1,109 @@ +"use client"; +import { Container } from "@/components/container"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; +import { Phone, MessageCircle, Globe } from "lucide-react"; + +export function Contact() { + const handleCall = () => { + window.location.href = 'tel:+8801334935472'; + }; + + const handleWhatsApp = () => { + window.open('https://wa.me/8801334935472', '_blank'); + }; + + const handleWebsite = () => { + window.open('https://www.enamgroup.com', '_blank'); + }; + + return ( +
+ + + {/* Section Header */} +
+

+ যোগাযোগ করুন +

+

+ Contact Us +

+

+ আমরা আপনার সেবায় সর্বদা প্রস্তুত • We're here to help you +

+
+ + {/* Contact Card */} +
+
+
+ +
+

+ ফোন / হোয়াটসঅ্যাপ +

+

Phone / WhatsApp

+ + +880 1334 935 472 + +
+ + {/* Action Buttons */} +
+ + + + + +
+ + {/* Website Info */} +
+

ওয়েবসাইট • Website

+ + www.enamgroup.com + +
+
+
+
+
+ ); +}