import { Link } from “react-router-dom”; import { Instagram, Linkedin, Phone, Mail, MapPin, ShieldCheck, MessageCircle, ArrowRight, } from “lucide-react”; import { useTranslation } from “react-i18next”; import { BUSINESS, PHONE_TEL, EMAIL_MAILTO, whatsappUrl, defaultWaMessage, } from “@/config/business”; import { trackEvent } from “@/lib/analytics”; import { useLocalizedServices } from “@/hooks/useLocalizedContent”; import logo from “@/assets/logo.png”; const Footer = () => { const { t, i18n } = useTranslation(); const isRtl = i18n.language === “ar”; const yearsActive = new Date().getFullYear() – BUSINESS.foundedYear; const localizedServices = useLocalizedServices(); const links = [ { to: “/”, label: t(“nav.home”) }, { to: “/services”, label: t(“nav.services”) }, { to: “/about”, label: t(“nav.about”) }, { to: “/how-it-works”, label: t(“nav.howItWorks”) }, { to: “/blog”, label: isRtl ? “المدونة” : “Blog” }, { to: “/contact”, label: t(“nav.contact”) }, ]; const services = Object.values(localizedServices).map((service) => ({ to: `/services/${service.slug}`, label: service.title, })); const legalLinks = [ { to: “/privacy”, label: t(“footer.privacy”) }, { to: “/terms”, label: t(“footer.terms”) }, ]; const trustItems = isRtl ? [“شريك نقل مؤسسي مرخص”, “تجهيز أسطول داخل المملكة”] : [“Licensed corporate transport partner”, “Saudi-wide fleet mobilization”]; const hasRegistration = BUSINESS.cr && BUSINESS.vat && !BUSINESS.cr.startsWith(“TODO”) && !BUSINESS.vat.startsWith(“TODO”); return ( ); }; export default Footer;

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!