import { useState, useEffect } from "react"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import heroVideo from "@/assets/contact us.mp4"; import Chatbot from "@/components/Chatbot"; import Request from "@/components/request"; import SEO from "@/components/SEO"; import { useLanguage } from "@/contexts/LanguageContext"; /* ------------ INDIA BRANCH IMAGES ------------- */ import branchCoimbatoreSTPL from "@/assets/susin-logo.jpg"; import branchMumbai from "@/assets/mumbai susin.jpg"; import branchKTCIndia from "@/assets/ktc india.jpg"; import branchITorkIndia from "@/assets/susin india.jpg"; /* ------------ OTHER COUNTRY IMAGES ------------ */ import uaeImg from "@/assets/locations/uae.jpg"; import qatarImg from "@/assets/locations/qatar.jpg"; import omanImg from "@/assets/locations/oman.jpg"; import malaysiaImg from "@/assets/locations/malaysia.jpg"; import ktcControlsImg from "@/assets/locations/ktc-controls.jpg"; /* ---------------------------------------------------- ALL LOCATION DATA (CORRECTED) ----------------------------------------------------*/ const locations = [ /* -------------------------------- INDIA -------------------------------- */ { id: "india", country: "India", region: "South Asia", branches: [ { id: "coimbatore-stpl", title: "Susin Technologies (P) Ltd – Coimbatore", image: branchCoimbatoreSTPL, address: "No. 45-A 12, Vadakku Thottam Pakuthi Idigarai (Near Gas Company), Coimbatore - 641 022 INDIA", email: "info@susin.in", phone1: "+91 77080 97242 (Mr. Yuvaraj)", phone2: "+91-422- 7140448", website: "http://www.susingroup.com", mapIframe: '' }, { id: "mumbai", title: "Susin I-Tork India Pvt Ltd (MUMBAI)", image: branchMumbai, address: "Regus Business Centre, Level-I, Tiffany Building, Hiranandani Estate, Thane West— 400607, Maharashtra, India", email: "sruley@regulusss.com", phone1: "+91 74003 55579 (Mr. Sanjey Ruley)", website: "https://www.regulusss.com/", mapIframe: '' }, { id: "coimbatore-ktc", title: "KTC Systemtechnik India Pvt Ltd", image: branchKTCIndia, address: "No. 43A, Vadakku Thottam Pakuthi Idigarai (Near Gas Company) Coimbatore - 641022 INDIA.", email: "sales@ktcsystem.in", phone1: "+91 82203 93006", website: "https://ktcsystem.in/", mapIframe: '' }, { id: "coimbatore-itork", title: "Susin I-Tork India Pvt Ltd", image: branchITorkIndia, address: "No. 43-A 9, Vadakku Thottam Pakuthi, Idigarai (Near Gas Company) Coimbatore - 641 022 INDIA.", email: "info@susinitork.in", phone1: "+91 63840 63034 (Mr. Dooshan - Sales)", phone2: "+91-422- 7140448 (landline)", website: "http://www.susinitork.in", mapIframe: '' } ] }, /* -------------------------------- UAE -------------------------------- */ { id: "uae", country: "UAE", region: "Middle East", branches: [ { title: "Susin I-Tork - ME (Sharjah)", image: uaeImg, address: "SUSIN I-TORK ME FZC Y-61, SAIF SUIT, SAIF ZONE SHARJAH, UAE PO Box No: 122643", email: "info@susinitorkme.com", phone1: "+971-56810 3434 (Mr. Nivin)", phone2: "+971-50206 5541 (Mr. Vijay shankar)", website: "https://www.susinitorkme.com/", mapIframe: '' } ] }, /* -------------------------------- QATAR -------------------------------- */ { id: "qatar", country: "Qatar", region: "Middle East", branches: [ { title: "Sosin Qatar Trading & Contracting W.L.L Arkan - Doha", image: qatarImg, address: "Building No.6, 2nd Floor, Office 46 Barwa Commercial Avenue, Abu Hamour P.O. Box - 220, Doha - Qatar", email: "sales@susingatar.com", phone1: "+974-3164 8923 (Mr. Raga)", phone2: "+974-3370 8598", website: "https://www.susingatar.com/", mapIframe: '' } ] }, /* -------------------------------- OMAN -------------------------------- */ { id: "oman", country: "Oman", region: "Middle East", branches: [ { title: "Heavy Equipment Maintenance and Trading LLC - Muscat", image: omanImg, address: "Gulf Energy Building, Building No: 1/21,Road No: 5001, Near Al Nadha Tower, Ghala North, Muscat, Sultanate of Oman", email: "sales@susinitorkme.com", phone1: "+968 78489305 (Mr. Vaitheeswaran)", phone2: "+968 99836012 (H.E.M.T: Mr. Muhammad Siraj)", website: "https://susinitorkme.com/", mapIframe: '' } ] }, /* -------------------------------- EUROPE -------------------------------- */ { id: "europe", country: "Germany", region: "Europe", branches: [ { title: "KTC CONTROLS – Hamburg", image: ktcControlsImg, address: "KTC CONTROLS Krähenweg 11 2459 Hamburg", email: "info@ktc-systemtechnik.de", phone1: "+49-(0)151 54 32 92 55 (Carsten Teichler)", phone2: "+49-(0)40-5714 752-12", website: "https://ktccontrols.com/", mapIframe: '' } ] }, /* -------------------------------- MALAYSIA -------------------------------- */ { id: "malaysia", country: "Malaysia", region: "Southeast Asia", branches: [ { title: "Susin I-Tork – Shah Alam", image: malaysiaImg, address: "Shah Alam, Selangor 40000, Malaysia", phone1: "+60 3 5567 8901", email: "malaysia@susin-itork.com", website: "http://www.susin-itork.com", mapIframe: '' } ] } ]; /* --------------------------------------------------------- PAGE START ----------------------------------------------------------*/ export default function Contact() { const { t } = useLanguage(); const [selectedTab, setSelectedTab] = useState("india"); useEffect(() => { window.scrollTo(0, 0); }, []); return (
{/* Main container with mobile optimization */}
{/* ---------------- HERO SECTION ---------------- */}
{/* Request Section - Mobile Optimized */}
{/* ---------------- LOCATIONS TABS ---------------- */}
{/* Mobile-optimized tab navigation */}
Global Operations Directory
{locations.map((loc) => ( {loc.country} ))}
{/* Technical Divider Line - Hidden on mobile */}
{locations.map((loc) => ( {/* Mobile-optimized grid */}
{loc.branches.map((branch, index) => (
{/* Header */}

{branch.title}

{loc.id.toUpperCase()} / {String(index + 1).padStart(2, '0')}
{/* Data Section */}

{branch.address}

{branch.email && ( )} {(branch.phone1 || branch.phone2) && (
{branch.phone1 && ( {branch.phone1} )} {branch.phone2 && ( {branch.phone2} )}
)}
{/* Media Section - Stack vertically on mobile */}
{branch.title}
{branch.website && ( )}
))}
))}
); }