From 19fb1fd5dbbd7eade7a1cb056cb43e1f6d73bc06 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:07:35 +0000 Subject: [PATCH] Update components/contact.tsx --- components/contact.tsx | 109 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 components/contact.tsx 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 + +
+
+
+
+
+ ); +}