"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
); }