diff --git a/public/trader-safe.pdf b/public/trader-safe.pdf new file mode 100644 index 0000000..87c5449 Binary files /dev/null and b/public/trader-safe.pdf differ diff --git a/src/Components/Sections/Contact/Contact.jsx b/src/Components/Sections/Contact/Contact.jsx index 437ab55..085ebdf 100644 --- a/src/Components/Sections/Contact/Contact.jsx +++ b/src/Components/Sections/Contact/Contact.jsx @@ -4,22 +4,23 @@ import { FaPhoneAlt, FaEnvelope, FaWhatsapp, + FaPaperPlane, } from "react-icons/fa"; import emailjs from "@emailjs/browser"; import { useRef, useState } from "react"; +import { motion } from "framer-motion"; const Contact = () => { const { t } = useTranslation(); const form = useRef(); const [message, setMessage] = useState({ text: "", type: "" }); const [isLoading, setIsLoading] = useState(false); -const Background = "https://i.imgur.com/IVqkUJO.jpg"; + const sendEmail = (e) => { e.preventDefault(); setIsLoading(true); setMessage({ text: "", type: "" }); - - emailjs +emailjs .sendForm( "service_dynf5hg", "template_l4ik4he", @@ -28,18 +29,17 @@ const Background = "https://i.imgur.com/IVqkUJO.jpg"; ) .then( (result) => { - console.log("✅ Message sent:", result.text); + console.log("Message sent:", result.text); setMessage({ text: t("contact.successMessage") || "Message sent successfully!", type: "success", }); form.current.reset(); setIsLoading(false); - // Clear message after 5 seconds setTimeout(() => setMessage({ text: "", type: "" }), 5000); }, (error) => { - console.error("❌ Failed to send message:", error.text); + console.error("Failed to send message:", error.text); setMessage({ text: t("contact.errorMessage") || @@ -47,154 +47,227 @@ const Background = "https://i.imgur.com/IVqkUJO.jpg"; type: "error", }); setIsLoading(false); - // Clear message after 5 seconds setTimeout(() => setMessage({ text: "", type: "" }), 5000); } ); }; return ( -
-
- Contact Background -
+
+
+
+
+
+ +
-
-

- - {t("contact.title")} - -

-

- {t("contact.subtitle")} -

-
- {/* Enhanced Contact Information Section */} -
- {/* Address Card */} -
-
-
-
- -
-
-
+
+ +

+ + {t("contact.title")} + +

+
+
+ + +
+ + + +
-

+

{t("contact.address")}

-

+

{t("contact.addressText")}

-
- - {/* Phone Card */} -
-
-
-
- -
-
-
+ + + + + +
+ + + +
-

+

{t("contact.phone")}

-
- - 0965656631 - +
+ 0965656631
- + + +
-
- {/* */} + +
-
- - {/* Email Card */} -
-
-
-
- -
-
-
+ + + + +
+ + + +
-
-
- - {/* Contact Form - keeping existing styling */} -
-
-

- {t("contact.formTitle")} + + + + + + + +
+

+ + {t("contact.formTitle")} +

-
+
-
- {/* Name Field */}
-
- - {/* Email Field */}
-
- - {/* Message Field */}
-
- - {/* Success/Error Message */} {message.text && ( -
{message.type === "success" ? ( @@ -284,15 +352,15 @@ const Background = "https://i.imgur.com/IVqkUJO.jpg"; )} {message.text}
-
+ )} - - {/* Submit Button */}
- +
-

+
+
+
+ +
+
+
+
+ +
+

+ {t('contact.contactSection.title')} +

+

+ {t('contact.contactSection.description')} +

+
+ {t('contact.contactSection.badges', { returnObjects: true }).map((badge, index) => ( + + {badge} + + ))} +
+
+
); }; -export default Contact; +export default Contact; \ No newline at end of file diff --git a/src/Components/Sections/Services/Services.jsx b/src/Components/Sections/Services/Services.jsx index 3258f05..5f64f29 100644 --- a/src/Components/Sections/Services/Services.jsx +++ b/src/Components/Sections/Services/Services.jsx @@ -1,829 +1,656 @@ - import React, { useState, useEffect } from "react"; import { Element } from "react-scroll"; import { useTranslation } from "react-i18next"; +import { motion, AnimatePresence } from "framer-motion"; import { + Globe, + MessageSquare, + Bell, + Package, + BarChart3, Zap, - ShieldCheck, - RadioTower, - HelpCircle, - PackageSearch, + Shield, + Users, + Clock, + CheckCircle } from "lucide-react"; -import gasStationImage from "./../../../assets/Images/gasstation.jpg"; - -const CARDS_PER_PAGE = 3; -const gasstation1 = "https://i.imgur.com/be6t8zE.jpg"; -const gasstation2 = "https://i.imgur.com/dn7OSjX.jpg"; -const gasstation3 = "https://i.imgur.com/audovxI.jpg"; -const gasstation4 = "https://i.imgur.com/k1s680S.jpg"; - -const clean1 = "https://i.imgur.com/2NQs9Wh.jpg"; -const clean2 = "https://i.imgur.com/TCJsvHj.jpg"; -const clean3 = "https://i.imgur.com/EIye8JU.jpg"; -const clean4 = "https://i.imgur.com/mO5LETx.jpg"; - -const test1 = "https://i.imgur.com/5d2r3N4.jpg"; -const test2 = "https://i.imgur.com/0HqkCPA.jpg"; -const test3 = "https://i.imgur.com/HpTV1GD.jpg"; -const test4 = "https://i.imgur.com/V4zTiA1.jpg"; -const test5 = "https://i.imgur.com/op6nAk3.jpg"; - -const dev1 = "https://i.imgur.com/IKJeTs7.jpg"; -const dev2 = "https://i.imgur.com/GjSwGhF.jpg"; -const dev3 = "https://i.imgur.com/TIR5WfS.jpg"; -const dev4 = "https://i.imgur.com/kbJe8Ty.jpg"; - -const repair1 = "https://i.imgur.com/ywBDvPS.jpg"; -const repair2 = "https://i.imgur.com/zN43sqf.jpg"; -const repair3 = "https://i.imgur.com/eJsWCZq.jpg"; -const repair4 = "https://i.imgur.com/VSHij6g.jpg"; - -const ite1 = "https://i.imgur.com/CNPO4Vu.jpg"; -const ite2 = "https://i.imgur.com/7TSbjgF.jpg"; -const ite3 = "https://i.imgur.com/RbNZyg3.jpg"; -const ite4 = "https://i.imgur.com/uFINv0O.jpg"; -const ite5 = "https://i.imgur.com/ZwrNebq.jpg"; -const ite6 = "https://i.imgur.com/tKOC0gO.jpg"; +const CARDS_PER_PAGE = 4; const Services = () => { const { t, ready } = useTranslation(); + const servicesData = [ + { + id: "service-1", + title: t('tradesafe.services.platform.title'), + description: t('tradesafe.services.platform.description'), + details: t('tradesafe.services.platform.details'), + icon: , + color: "from-[#23558f] to-[#3360b2]", + bgColor: "bg-gradient-to-br from-[#23558f]/20 to-[#3360b2]/20", + features: t('tradesafe.services.platform.features', { returnObjects: true }) + }, + { + id: "service-2", + title: t('tradesafe.services.orders.title'), + description: t('tradesafe.services.orders.description'), + details: t('tradesafe.services.orders.details'), + icon: , + color: "from-[#3360b2] to-[#3c5ee3]", + bgColor: "bg-gradient-to-br from-[#3360b2]/20 to-[#3c5ee3]/20", + features: t('tradesafe.services.orders.features', { returnObjects: true }) + }, + { + id: "service-3", + title: t('tradesafe.services.communication.title'), + description: t('tradesafe.services.communication.description'), + details: t('tradesafe.services.communication.details'), + icon: , + color: "from-[#3c5ee3] to-[#5c7ce3]", + bgColor: "bg-gradient-to-br from-[#3c5ee3]/20 to-[#5c7ce3]/20", + features: t('tradesafe.services.communication.features', { returnObjects: true }) + }, + { + id: "service-4", + title: t('tradesafe.services.notifications.title'), + description: t('tradesafe.services.notifications.description'), + details: t('tradesafe.services.notifications.details'), + icon: , + color: "from-[#4a90e2] to-[#6aa8f2]", + bgColor: "bg-gradient-to-br from-[#4a90e2]/20 to-[#6aa8f2]/20", + features: t('tradesafe.services.notifications.features', { returnObjects: true }) + }, + { + id: "service-5", + title: t('tradesafe.services.dashboard.title'), + description: t('tradesafe.services.dashboard.description'), + details: t('tradesafe.services.dashboard.details'), + icon: , + color: "from-[#2ecc71] to-[#1abc9c]", + bgColor: "bg-gradient-to-br from-[#2ecc71]/20 to-[#1abc9c]/20", + features: t('tradesafe.services.dashboard.features', { returnObjects: true }) + }, + { + id: "service-6", + title: t('tradesafe.services.solutions.title'), + description: t('tradesafe.services.solutions.description'), + details: t('tradesafe.services.solutions.details'), + icon: , + color: "from-[#9b59b6] to-[#8e44ad]", + bgColor: "bg-gradient-to-br from-[#9b59b6]/20 to-[#8e44ad]/20", + features: t('tradesafe.services.solutions.features', { returnObjects: true }) + }, + { + id: "service-7", + title: t('tradesafe.services.speed.title'), + description: t('tradesafe.services.speed.description'), + details: t('tradesafe.services.speed.details'), + icon: , + color: "from-[#f39c12] to-[#e67e22]", + bgColor: "bg-gradient-to-br from-[#f39c12]/20 to-[#e67e22]/20", + features: t('tradesafe.services.speed.features', { returnObjects: true }) + }, + { + id: "service-8", + title: t('tradesafe.services.network.title'), + description: t('tradesafe.services.network.description'), + details: t('tradesafe.services.network.details'), + icon: , + color: "from-[#3498db] to-[#2980b9]", + bgColor: "bg-gradient-to-br from-[#3498db]/20 to-[#2980b9]/20", + features: t('tradesafe.services.network.features', { returnObjects: true }) + } + ]; const reasonsToChooseUs = [ { - icon: , - text: t("services.reasons.0", "Fast Service"), + icon: , + text: t('tradesafe.reasons.speed.text'), + description: t('tradesafe.reasons.speed.description') }, { - icon: , - text: t("services.reasons.1", "Quality Assurance"), + icon: , + text: t('tradesafe.reasons.reliability.text'), + description: t('tradesafe.reasons.reliability.description') }, { - icon: , - text: t("services.reasons.2", "Modern Technology"), + icon: , + text: t('tradesafe.reasons.connection.text'), + description: t('tradesafe.reasons.connection.description') }, { - icon: , - text: t("services.reasons.3", "Customer Support"), + icon: , + text: t('tradesafe.reasons.communication.text'), + description: t('tradesafe.reasons.communication.description') }, { - icon: , - text: t("services.reasons.4", "Comprehensive Solutions"), - }, - ]; - - const servicesData = [ - { - title: t("services.items.0.title", "Gas Station Services"), - text: t("services.items.0.text", "Comprehensive gas station solutions"), - details: t( - "services.items.0.details", - "Installation\nMaintenance\nSafety Checks\nUpgrades" - ), - images: [gasstation1, gasstation2, gasstation3, gasstation4], - type: "default" + icon: , + text: t('tradesafe.reasons.time.text'), + description: t('tradesafe.reasons.time.description') }, { - title: t("services.items.1.title", "Development"), - text: t("services.items.1.text", "Custom development solutions"), - details: t( - "services.items.1.details", - "Web Development\nMobile Apps\nCustom Software\nSystem Integration" - ), - images: [dev1, dev2, dev3, dev4], - type: "default" - }, - { - title: t("services.items.2.title", "Repair Services"), - text: t("services.items.2.text", "Professional repair services"), - details: t( - "services.items.2.details", - "Equipment Repair\nComponent Replacement\nDiagnostics\nPreventive Maintenance" - ), - images: [repair1, repair2, repair3, repair4], - type: "default" - }, - { - title: t("services.items.3.title", "Cleaning Services"), - text: t("services.items.3.text", "Thorough cleaning solutions"), - details: t("services.items.3.details", "Deep Cleaning\nSanitization\nEquipment Cleaning\nMaintenance Cleaning"), - images: [clean1, clean2, clean3, clean4, test1, test2, test3, test4, test5], - type: "default" - }, - { - title: t("services.items.5.title", "IT Equipment"), - text: t("services.items.5.text", "IT equipment services"), - details: t( - "services.items.5.details", - "Installation\nConfiguration\nMaintenance\nUpgrades" - ), - images: [ite1, ite2, ite3, ite4, ite5, ite6], - type: "ite" - }, - ]; - - const [expandedIndex, setExpandedIndex] = useState(null); - const [currentImage, setCurrentImage] = useState(gasStationImage); - const [imageIndex, setImageIndex] = useState(0); - const [page, setPage] = useState(0); - const [isPaused, setIsPaused] = useState(false); - const [windowWidth, setWindowWidth] = useState(window.innerWidth); - - useEffect(() => { - const handleResize = () => { - setWindowWidth(window.innerWidth); - }; - - window.addEventListener("resize", handleResize); - return () => window.removeEventListener("resize", handleResize); - }, []); - - useEffect(() => { - let intervalId; - - if (expandedIndex !== null && !isPaused) { - const images = servicesData[expandedIndex].images; - - setImageIndex(0); - setCurrentImage(images[0]); - - intervalId = setInterval(() => { - setImageIndex((prevIndex) => { - const nextIndex = (prevIndex + 1) % images.length; - setCurrentImage(images[nextIndex]); - return nextIndex; - }); - }, 2000); - } else if (expandedIndex === null) { - setCurrentImage(gasStationImage); - setImageIndex(0); + icon: , + text: t('tradesafe.reasons.solutions.text'), + description: t('tradesafe.reasons.solutions.description') } + ]; - return () => clearInterval(intervalId); - }, [expandedIndex, isPaused]); - - const toggleCard = (index) => { - const actualIndex = startIndex + index; - setExpandedIndex(actualIndex === expandedIndex ? null : actualIndex); - }; + const [expandedCards, setExpandedCards] = useState({}); + const [hoveredCard, setHoveredCard] = useState(null); + const [page, setPage] = useState(0); const startIndex = page * CARDS_PER_PAGE; const endIndex = startIndex + CARDS_PER_PAGE; const visibleServices = servicesData.slice(startIndex, endIndex); + const totalPages = Math.ceil(servicesData.length / CARDS_PER_PAGE); + + const toggleCard = (cardId) => { + setExpandedCards(prev => ({ + ...prev, + [cardId]: !prev[cardId] + })); + }; + + const toggleAllCards = () => { + const allExpanded = Object.values(expandedCards).every(Boolean); + const newState = {}; + visibleServices.forEach(service => { + newState[service.id] = !allExpanded; + }); + setExpandedCards(newState); + }; const handleNextPage = () => { - const totalPages = Math.ceil(servicesData.length / CARDS_PER_PAGE); - setExpandedIndex(null); + const newExpandedState = {}; + visibleServices.forEach(service => { + newExpandedState[service.id] = false; + }); + setExpandedCards(newExpandedState); setPage((prev) => (prev + 1) % totalPages); }; - if (!ready) return
Loading translations...
; + const handlePrevPage = () => { + const newExpandedState = {}; + visibleServices.forEach(service => { + newExpandedState[service.id] = false; + }); + setExpandedCards(newExpandedState); + setPage((prev) => (prev - 1 + totalPages) % totalPages); + }; + + useEffect(() => { + const newExpandedState = {}; + visibleServices.forEach(service => { + newExpandedState[service.id] = expandedCards[service.id] || false; + }); + setExpandedCards(newExpandedState); + }, [page]); + + const openPdfPresentation = () => { + const pdfUrl = `${window.location.origin}/trader-safe.pdf`; + window.open(pdfUrl, "_blank", "noopener,noreferrer"); + }; + + const openPlatformLink = () => { + const platformUrl = "http://45.93.137.91/"; + window.open(platformUrl, "_blank", "noopener,noreferrer"); + }; + + if (!ready) return ( +
+
+
+ ); return ( <> -
-

- - {t("services.title", "Our Services")} - -

+
+
+
+
+
+
+
-
-
-

- {t("services.subtitle", "Explore our professional services")} -

- -
- {visibleServices.map((service, index) => ( - -
toggleCard(index)} - className="relative cursor-pointer transition-all duration-300 ease-in-out transform hover:scale-[1.02] p-6 bg-gray-800 rounded-md shadow-md hover:shadow-[0px_2px_6px_#F3C623] flex flex-col justify-center items-center text-center" - > -

- {service.title} -

-

- {service.text} -

- - {expandedIndex === startIndex + index && ( -
- {service.details.split("\n").map((line, i, arr) => { - const isLastCentered = - arr.length % 2 === 1 && i === arr.length - 1; - return ( -
- {line} -
- ); - })} -
- )} - -
- - - - - - - - - -
-
- - {windowWidth < 1024 && expandedIndex === startIndex + index && ( -
- {`${service.title} -
- )} -
- ))} - - + +
+ {Array.from({ length: totalPages }).map((_, idx) => ( + { + const newExpandedState = {}; + visibleServices.forEach(service => { + newExpandedState[service.id] = false; + }); + setExpandedCards(newExpandedState); + setPage(idx); + }} + className={`w-10 h-10 rounded-full flex items-center justify-center font-medium transition-all ${ + page === idx + ? 'bg-gradient-to-r from-[#3c5ee3] to-[#2ecc71] text-white shadow-lg scale-110' + : 'bg-white/80 text-gray-600 hover:bg-white' + }`} + > + {idx + 1} + + ))} +
+ + + + + +
+
+ + {t('tradesafe.buttons.page', { current: page + 1, total: totalPages })} +
- - {!(windowWidth < 1024 && expandedIndex !== null) && ( -
setIsPaused(true)} - onMouseLeave={() => setIsPaused(false)} - > -
-
- Service Visual -
- {expandedIndex === null && ( -
-

- {t("services.futureVision", "Our Future Vision")} -

-

- {t( - "services.futureVisionText", - "Innovative solutions for tomorrow's challenges" - )} -

-
- )} -
-
- )}
-
+
-
-

- - {t("services.whyChooseUs", "Why Choose Us")} - -

-
- {reasonsToChooseUs.map((reason, index) => ( -
+ +
+
+
+
+ +
+
+
+ +
+ + -
-
-
- {React.cloneElement(reason.icon, { - className: "w-8 h-8 text-white", - })} + {t('tradesafe.reasons.title')} + + +
+ {reasonsToChooseUs.map((reason, index) => ( + +
+ + {reason.icon} + + +
+

+ {reason.text} +

+

+ {reason.description} +

-
-
-
- -
-

- {reason.text} -

+ + + + ))} +
+ +
+
+
+
+ +
+

+ {t('tradesafe.reasons.cta.title')} +

+

+ {t('tradesafe.reasons.cta.subtitle')} +

+
+ + + + + {t('tradesafe.buttons.startNow')} + + + + + + {t('tradesafe.buttons.viewPresentation')} +
- ))} +
-
+
); }; export default Services; - - - - - - - - - - - - - - -// import React, { useState, useEffect } from "react"; -// import { Element } from "react-scroll"; -// import { useTranslation } from "react-i18next"; -// import { -// Zap, -// ShieldCheck, -// RadioTower, -// HelpCircle, -// PackageSearch, -// } from "lucide-react"; - -// import gasStationImage from "./../../../assets/Images/gasstation.jpg"; - - -// const CARDS_PER_PAGE = 3; -// const gasstation1 = "https://i.imgur.com/be6t8zE.jpg"; -// const gasstation2 = "https://i.imgur.com/dn7OSjX.jpg"; -// const gasstation3 = "https://i.imgur.com/audovxI.jpg"; -// const gasstation4 = "https://i.imgur.com/k1s680S.jpg"; - -// const clean1 = "https://i.imgur.com/2NQs9Wh.jpg"; -// const clean2 = "https://i.imgur.com/TCJsvHj.jpg"; -// const clean3 = "https://i.imgur.com/EIye8JU.jpg"; -// const clean4 = "https://i.imgur.com/mO5LETx.jpg"; - -// const test1 = "https://i.imgur.com/5d2r3N4.jpg"; -// const test2 = "https://i.imgur.com/0HqkCPA.jpg"; -// const test3 = "https://i.imgur.com/HpTV1GD.jpg"; -// const test4 = "https://i.imgur.com/V4zTiA1.jpg"; -// const test5 = "https://i.imgur.com/op6nAk3.jpg"; - -// const dev1 = "https://i.imgur.com/IKJeTs7.jpg"; -// const dev2 = "https://i.imgur.com/GjSwGhF.jpg"; -// const dev3 = "https://i.imgur.com/TIR5WfS.jpg"; -// const dev4 = "https://i.imgur.com/kbJe8Ty.jpg"; - -// const repair1 = "https://i.imgur.com/ywBDvPS.jpg"; -// const repair2 = "https://i.imgur.com/zN43sqf.jpg"; -// const repair3 = "https://i.imgur.com/eJsWCZq.jpg"; -// const repair4 = "https://i.imgur.com/VSHij6g.jpg"; - -// const ite1 = "https://i.imgur.com/CNPO4Vu.jpg"; -// const ite2 = "https://i.imgur.com/7TSbjgF.jpg"; -// const ite3 = "https://i.imgur.com/RbNZyg3.jpg"; -// const ite4 = "https://i.imgur.com/uFINv0O.jpg"; -// const ite5 = "https://i.imgur.com/ZwrNebq.jpg"; -// const ite6 = "https://i.imgur.com/tKOC0gO.jpg"; - -// const Services = () => { -// const { t, ready } = useTranslation(); - -// const reasonsToChooseUs = [ -// { -// icon: , -// text: t("services.reasons.0", "Fast Service"), -// }, -// { -// icon: , -// text: t("services.reasons.1", "Quality Assurance"), -// }, -// { -// icon: , -// text: t("services.reasons.2", "Modern Technology"), -// }, -// { -// icon: , -// text: t("services.reasons.3", "Customer Support"), -// }, -// { -// icon: , -// text: t("services.reasons.4", "Comprehensive Solutions"), -// }, -// ]; - -// const servicesData = [ -// { -// title: t("services.items.0.title", "Gas Station Services"), -// text: t("services.items.0.text", "Comprehensive gas station solutions"), -// details: t( -// "services.items.0.details", -// "Installation\nMaintenance\nSafety Checks\nUpgrades" -// ), -// images: [gasstation1, gasstation2, gasstation3, gasstation4], -// type: "default" -// }, -// { -// title: t("services.items.1.title", "Development"), -// text: t("services.items.1.text", "Custom development solutions"), -// details: t( -// "services.items.1.details", -// "Web Development\nMobile Apps\nCustom Software\nSystem Integration" -// ), -// images: [dev1, dev2, dev3, dev4], -// type: "default" -// }, -// { -// title: t("services.items.2.title", "Repair Services"), -// text: t("services.items.2.text", "Professional repair services"), -// details: t( -// "services.items.2.details", -// "Equipment Repair\nComponent Replacement\nDiagnostics\nPreventive Maintenance" -// ), -// images: [repair1, repair2, repair3, repair4], -// type: "default" -// }, -// { -// title: t("services.items.3.title", "Cleaning Services"), -// text: t("services.items.3.text", "Thorough cleaning solutions"), -// details: t("services.items.3.details", "Deep Cleaning\nSanitization\nEquipment Cleaning\nMaintenance Cleaning"), -// images: [clean1, clean2, clean3, clean4, test1,test2,test3,test4,test5], -// type: "default" -// }, -// { -// title: t("services.items.5.title", "IT Equipment"), -// text: t("services.items.5.text", "IT equipment services"), -// details: t( -// "services.items.5.details", -// "Installation\nConfiguration\nMaintenance\nUpgrades" -// ), -// images: [ite1, ite2, ite3, ite4, ite5, ite6], -// type: "ite" -// }, -// ]; - -// const [expandedIndex, setExpandedIndex] = useState(null); -// const [currentImage, setCurrentImage] = useState(gasStationImage); -// const [imageIndex, setImageIndex] = useState(0); -// const [page, setPage] = useState(0); -// const [isPaused, setIsPaused] = useState(false); -// const [windowWidth, setWindowWidth] = useState(window.innerWidth); - -// useEffect(() => { -// const handleResize = () => { -// setWindowWidth(window.innerWidth); -// }; - -// window.addEventListener("resize", handleResize); -// return () => window.removeEventListener("resize", handleResize); -// }, []); - -// useEffect(() => { -// let intervalId; - -// if (expandedIndex !== null && !isPaused) { -// const images = servicesData[expandedIndex].images; - -// setImageIndex(0); -// setCurrentImage(images[0]); - -// intervalId = setInterval(() => { -// setImageIndex((prevIndex) => { -// const nextIndex = (prevIndex + 1) % images.length; -// setCurrentImage(images[nextIndex]); -// return nextIndex; -// }); -// }, 2000); -// } else if (expandedIndex === null) { -// setCurrentImage(gasStationImage); -// setImageIndex(0); -// } - -// return () => clearInterval(intervalId); -// }, [expandedIndex, isPaused]); - -// const toggleCard = (index) => { -// setExpandedIndex(index === expandedIndex ? null : index); -// }; - -// const startIndex = page * CARDS_PER_PAGE; -// const endIndex = startIndex + CARDS_PER_PAGE; -// const visibleServices = servicesData.slice(startIndex, endIndex); - -// const handleNextPage = () => { -// const totalPages = Math.ceil(servicesData.length / CARDS_PER_PAGE); -// setExpandedIndex(null); -// setPage((prev) => (prev + 1) % totalPages); -// }; - -// if (!ready) return
Loading translations...
; - -// return ( -// <> -// -//
-//

-// -// {t("services.title", "Our Services")} -// -//

- -//
-//
-//

-// {t("services.subtitle", "Explore our professional services")} -//

- -//
-// {visibleServices.map((service, index) => { -// const globalIndex = startIndex + index; -// return ( -// -//
toggleCard(globalIndex)} -// className="relative cursor-pointer transition-all duration-300 ease-in-out transform hover:scale-[1.02] p-6 bg-gray-800 rounded-md shadow-md hover:shadow-[0px_2px_6px_#F3C623] flex flex-col justify-center items-center text-center" -// > -//

-// {service.title} -//

-//

-// {service.text} -//

- -// {expandedIndex === globalIndex && ( -//
-// {service.details.split("\n").map((line, i, arr) => { -// const isLastCentered = -// arr.length % 2 === 1 && i === arr.length - 1; -// return ( -//
-// {line} -//
-// ); -// })} -//
-// )} - -//
-// -// -// -// -// -// -// -// -// -//
-//
- -// {windowWidth < 1024 && expandedIndex === globalIndex && ( -//
-// {`${service.title} -//
-// )} -//
-// ); -// })} - -// -//
-//
- -// {!(windowWidth < 1024 && expandedIndex !== null) && ( -//
setIsPaused(true)} -// onMouseLeave={() => setIsPaused(false)} -// > -//
-//
-// Service Visual -//
-// {expandedIndex === null && ( -//
-//

-// {t("services.futureVision", "Our Future Vision")} -//

-//

-// {t( -// "services.futureVisionText", -// "Innovative solutions for tomorrow's challenges" -// )} -//

-//
-// )} -//
-//
-// )} -//
-//
-//
- -// -//
-//

-// -// {t("services.whyChooseUs", "Why Choose Us")} -// -//

-//
-// {reasonsToChooseUs.map((reason, index) => ( -//
-//
-//
-//
-// {React.cloneElement(reason.icon, { -// className: "w-8 h-8 text-white", -// })} -//
-//
-//
-//
-//
- -//
-//

-// {reason.text} -//

-//
-//
-// ))} -//
-//
-//
-// -// ); -// }; - -// export default Services; - diff --git a/src/i18n.js b/src/i18n.js index 5a8bdbc..4d8af37 100644 --- a/src/i18n.js +++ b/src/i18n.js @@ -29,72 +29,134 @@ const resources = { title: "About Us", description: "We specialize in fuel infrastructure solutions where we provide comprehensive services including design, construction, maintenance, and development of fuel stations and storage facilities.", }, + contact: { title: "Contact Us", - subtitle: "Our expertise serves everyone: from the simplest station to the largest chain of stations and from secondary warehouses to strategic warehouses. Contact us for professional solutions with international standards", + subtitle: "Ready to serve you around the clock", address: "Address", addressText: "Headquarters: Syria - Damascus - Baramkeh\nFlexible Offices: Homs - Fairouzeh, Aleppo - Industrial Zone, Tartous - Dubai Street\nWork Areas: Ready to implement works in all Syrian governorates", phone: "Phone Numbers", email: "Email", - formTitle: "Contact us and let us be your hands in creating achievement", + formTitle: "Contact us and start your international trade journey with confidence", name: "Name", - nameePlaceholder: "Enter your name", + namePlaceholder: "Enter your name", emailPlaceholder: "example@example.com", message: "Message", messagePlaceholder: "Write your message here", send: "Send", - successMessage: "Message sent successfully ", - errorMessage: "An error occurred while sending ", + successMessage: "Message sent successfully", + errorMessage: "An error occurred while sending", + contactSection: { + title: "Ready to serve you around the clock", + description: "Our team is available to answer your inquiries and provide the best solutions for your projects", + badges: [ + "Direct call", + "Technical support", + "Quick response", + "Integrated solutions" + ] + } }, - services: { - title: "Our Services", - - subtitle: "We provide comprehensive services including design, construction, maintenance, and development of gas stations and storage facilities.", - whyChooseUs: "Why Choose Us", - futureVision: "Our Future Vision", - futureVisionText: "We strive to enhance gas stations by improving efficiency, sustainability, and service quality. Our goal is to provide a smoother refueling experience and reduce environmental impact.", - moreServices: "More Services", - reasons: [ - "24/7 rapid response to all requests and emergencies", - "Implementation according to international safety and precision standards", - "Providing and installing advanced automation systems for remote control of multiple stations from a unified control center", - "Free consultations from specialized experts designed according to customer needs for stations and distribution systems", - "Providing the latest high-efficiency petroleum equipment and accessories with warranties ranging from one to five years", - ], - items: [{ - title: "Engineering Studies & Gas Station Construction", - text: "Building gas stations and storage facilities according to international quality and safety standards.", - details: "Providing engineering studies\nImplementing civil and metallic works\nSupplying and installing gas station equipment\nTesting and delivery with 2-year warranty for all works", + tradesafe: { + subtitle: "An innovative platform connecting traders with customs brokers and shipping companies to simplify international trade operations", + services: { + title: "TradeSafe Services", + platform: { + title: "International Trade Platform", + description: "Connecting traders with logistics service providers", + details: "Create requests easily - Receive multiple offers - Direct communication with providers - Comprehensive rating system", + features: ["Create Requests", "Multiple Offers", "Direct Chat", "Rating System"] }, - { - title: "Station and Storage Development", - text: "Capacity expansion, pump power increase, and smart monitoring solutions.", - details: "Periodic maintenance for pumps and tanks\nPerformance improvement using latest technologies\nInfrastructure upgrade for stations\nProviding smart solutions for remote monitoring", + orders: { + title: "Order Management", + description: "Track your shipments in real-time", + details: "Monitor shipment status - Instant updates - Detailed reports - Complete records", + features: ["Live Tracking", "Instant Updates", "Detailed Reports", "Records"] }, - { - title: "Comprehensive Maintenance", - text: "Preventive and emergency maintenance including", - details: "Civil works\nElectronic automation\nElectrical works\nMechanical works", + communication: { + title: "Direct Communication", + description: "In-app chat with partners", + details: "Instant communication with customs brokers - Chat with shipping companies - Document sharing - Conversation history saving", + features: ["Instant Chat", "File Sharing", "Chat History", "Notifications"] }, - { - title: "Tank Technical Life Inspection, Cleaning and Calibration", - text: "Professional cleaning using specialized materials to ensure tank safety and fuel quality.", - details: "Determining technical life of tanks with UT-MT-HT-PT tests\nCleaning fuel tanks using international protocols", + notifications: { + title: "Instant Notifications", + description: "Stay updated with all updates", + details: "New offer notifications - Order status updates - Partner messages - Payment alerts", + features: ["New Offers", "Status Updates", "Partner Messages", "Alerts"] }, - { - title: "Specialized Technical Tests", - text: "Advanced tests including", - details: "Penetrating liquids for tanks\nand pipelines\nUltrasonic waves\nMagnetic field tests", + dashboard: { + title: "Smart Dashboard", + description: "Smart tools for decision making", + details: "Market analysis - Performance reports - Key performance indicators - AI-based recommendations", + features: ["Market Analysis", "Performance Reports", "KPIs", "Smart Recommendations"] }, - { - title: "Automation and Monitoring Systems", - text: "Advanced digital solutions including", - details: "Managing multiple gas stations remotely from a unified control center\nReal-time station performance monitoring and data analysis to improve operational efficiency", + solutions: { + title: "Integrated Solutions", + description: "Secure payment and additional features", + details: "Integrated payment systems - Technical support - AI assistance - Custom reports", + features: ["Secure Payment", "Technical Support", "AI Assistance", "Custom Reports"] }, - ], - }, - }, + speed: { + title: "Speed and Efficiency", + description: "Fast performance and simplified interface", + details: "Improved user interface - Faster task completion - Smooth user experience - High performance", + features: ["Fast Interface", "Faster Completion", "Smooth Experience", "High Performance"] + }, + network: { + title: "Partner Network", + description: "Connection with multiple service providers", + details: "Certified customs clearance companies - Reliable shipping companies - Diverse service providers - Global network", + features: ["Certified Brokers", "Shipping Companies", "Diverse Providers", "Global Network"] + } + }, + reasons: { + title: "Why Choose TradeSafe?", + speed: { + text: "Speed of performance and response", + description: "30% faster interface for completing tasks" + }, + reliability: { + text: "High reliability and security", + description: "Secure payment systems and data protection" + }, + connection: { + text: "Global connection", + description: "Network of international service providers" + }, + communication: { + text: "Direct communication", + description: "Instant chat with all parties" + }, + time: { + text: "Time saving", + description: "Managing international trade in a few clicks" + }, + solutions: { + text: "Integrated solutions", + description: "Comprehensive platform for all trade needs" + }, + cta: { + title: "International trade experience in your pocket", + subtitle: "Join the TradeSafe platform now and enjoy all the benefits of managing international trade easily and quickly", + start: "Start Now", + presentation: "View Presentation" + } + }, + buttons: { + expandAll: "Expand All Cards", + collapseAll: "Collapse All Cards", + showDetails: "Show All Details", + next: "Next", + prev: "Previous", + page: "Page {{current}} of {{total}}", + startNow: "Start Now", + viewPresentation: "View Presentation" + } + } + } }, + ar: { translation: { nav: { @@ -103,6 +165,7 @@ const resources = { about: "من نحن", contact: "تواصل معنا", }, + home: { phrases: [ "إنشاء محطات ومستودعات الوقود الاسترتيجية", @@ -117,75 +180,139 @@ const resources = { subtitle2: "حلول متكاملة لبناء وتطوير وصيانة محطات الوقود", contactUs: "تواصل معنا", }, + about: { title: "من نحن", description: "نحن متخصصون في حلول البنية التحتية للوقود حيث نقدم خدمات متكاملة تشمل التصميم، البناء، الصيانة، وتطوير محطات الوقود ومنشآت التخزين.", }, + contact: { title: "تواصل معنا", - subtitle: "خبرتنا تخدم الجميع : من أبسط محطة إلى أكبر سلسة محطات ومن المستودعات الثانوية إلى المستوعات الاستراتيجية تواصل معنا لحلول مهنية بمقاييس عالمية", + subtitle: "مستعدون لخدمتك على مدار الساعة", address: "العنوان", addressText: "المقر الرئيسي: سوريا - دمشق - البرامكة\nالمكاتب المرنة: حمص - فيروزة، حلب - المنطقة الصناعية، طرطوس - شارع دبي\nمناطق العمل: جاهزين لتنفيذ الأعمال في جميع المحافظات السورية", phone: "أرقام الاتصال", email: "البريد الإلكتروني", - formTitle: "تواصل معنا و دعنا نكون يديك في صناعة الإنجاز", + formTitle: "تواصل معنا وابدأ رحلتك في التجارة الدولية بثقة", name: "الاسم", - nameePlaceholder: "أدخل اسمك", + namePlaceholder: "أدخل اسمك", emailPlaceholder: "example@example.com", message: "الرسالة", messagePlaceholder: "اكتب رسالتك هنا", send: "إرسال", - successMessage: "تم إرسال الرسالة بنجاح ", - errorMessage: "حدث خطأ أثناء الإرسال ", + successMessage: "تم إرسال الرسالة بنجاح", + errorMessage: "حدث خطأ أثناء الإرسال", + contactSection: { + title: "مستعدون لخدمتك على مدار الساعة", + description: "فريقنا متاح للإجابة على استفساراتك وتقديم أفضل الحلول لمشاريعك", + badges: [ + "اتصال مباشر", + "دعم فني", + "استجابة سريعة", + "حلول متكاملة" + ] + } }, - services: { - title: "خدماتنا", - subtitle: "نقدم خدمات متكاملة تشمل التصميم، البناء، الصيانة، وتطوير محطات الوقود ومنشآت التخزين.", - futureVision: "نظرتنا المستقبلية", - whyChooseUs: "لماذا تختارنا", - futureVisionText: "نسعى لتعزيز محطات الوقود من خلال تحسين الكفاءة والاستدامة وجودة الخدمة. هدفنا هو توفير تجربة تزوّد أكثر سلاسة وتقليل الأثر البيئي", - moreServices: "المزيد من خدماتنا", - reasons: [ - "استجابة سريعة على مدار الساعة لجميع الطلبات والطوارئ", - "تنفيذ وفقًا لمعايير السلامة والدقة العالمية", - "توفير وتركيب أنظمة أتمتة متقدمة للتحكم بعدة محطات عن بُعد من مركز تحكم موحد", - "استشارات مجانية من خبراء متخصصين مصممة حسب احتياجات العميل للمحطات وأنظمة التوزيع", - "توفير أحدث المعدات والملحقات البترولية عالية الكفاءة مع ضمانات تتراوح من سنة إلى خمس سنوات", - ], - items: [{ - title: "الدراسات الهندسية و إنشاء محطات الوقود", - text: "بناء محطات الوقود و منشآت التخزين وفقًا لمعايير الجودة والسلامة الدولية.", - details: "تقدیم الدراسات الھندسیة\nتنفیذ الاعمال المدنیة والمعدنیة\nتوريد وتركیب تجھیزات محطات الوقود\nالتجریب والتسلیم مع كفالة 2 سنة لجمیع الاعمال", + tradesafe: { + subtitle: "منصة مبتكرة تربط التجار مع الوسطاء الجمركيين وشركات الشحن لتبسيط عمليات التجارة الدولية", + services: { + title: "خدمات TradeSafe", + platform: { + title: "منصة التجارة الدولية", + description: "ربط التجار مع مقدمي الخدمات اللوجستية", + details: "أنشئ طلبات بسهولة - استقبال عروض متعددة - تواصل مباشر مع المزودين - نظام تقييم شامل", + features: ["إنشاء الطلبات", "عروض متعددة", "دردشة مباشرة", "نظام التقييم"] }, - { - title: "تطوير المحطات والتخزين", - text: "توسيع السعة و زيادة قوة الضخ و حلول المراقبة الذكية.", - details: "صيانة دورية للمضخات والخزانات\nتحسين الأداء باستخدام أحدث التقنيات\nترقية البنية التحتية للمحطات\nتقديم حلول ذكية للمراقبة عن بعد", + orders: { + title: "إدارة الطلبات", + description: "تتبع شحناتك في الوقت الفعلي", + details: "مراقبة حالة الشحن - تحديثات فورية - تقارير مفصلة - سجلات كاملة", + features: ["تتبع حي", "تحديثات فورية", "تقارير مفصلة", "السجلات"] }, - { - title: "الصيانة الشاملة", - text: "صيانة وقائية و طارئة تشمل", - details: "الأعمال المدنية\nالأتمتة الإلكترونية\nالأعمال الكهربائية\nالأعمال الميكانيكية", + communication: { + title: "التواصل المباشر", + description: "دردشة داخل التطبيق مع الشركاء", + details: "تواصل فوري مع الوسطاء الجمركيين - دردشة مع شركات الشحن - مشاركة المستندات - حفظ تاريخ المحادثات", + features: ["دردشة فورية", "مشاركة الملفات", "تواريخ المحادثات", "إشعارات"] }, - { - title: "فحص العمر الفني للخزانات وتنظیفھا ومعایرتھا", - text: "تنظيف احترافي باستخدام مواد متخصصة لضمان سلامة الخزانات وجودة الوقود.", - details: "تحدید العمر الفني للخزانات باختبارات UT-MT-HT-PT\nتنظیف خزانات الوقود باستخدام بروتوكولات عالمیة", + notifications: { + title: "الإشعارات الفورية", + description: "كن على اطلاع بكل التحديثات", + details: "إشعارات العروض الجديدة - تحديثات حالة الطلبات - رسائل الشركاء - تنبيهات الدفع", + features: ["عروض جديدة", "تحديثات الحالة", "رسائل الشركاء", "تنبيهات"] }, - { - title: "الاختبارات الفنية المتخصصة", - text: "اختبارات متقدمة تشمل", - details: "السوائل النفاذة للخزانات\nوخطوط الأنابيب\nالموجات فوق الصوتية\nاختبارات المجال المغناطيسي", + dashboard: { + title: "لوحة التحكم الذكية", + description: "أدوات ذكية لاتخاذ القرارات", + details: "تحليلات السوق - تقارير الأداء - مؤشرات الأداء الرئيسية - توصيات مبنية على الذكاء الاصطناعي", + features: ["تحليلات السوق", "تقارير الأداء", "مؤشرات الأداء", "توصيات ذكية"] }, - { - title: "أنظمة الأتمتة والمراقبة", - text: "حلول رقمية متطورة تشمل", - details: "إدارة محطات الوقود المتعددة عن بُعد من مركز تحكم موحد\nمراقبة أداء المحطات بشكل لحظي وتحليل البيانات لتحسين الكفاءة التشغيلية", + solutions: { + title: "الحلول المتكاملة", + description: "دفع آمن ومميزات إضافية", + details: "أنظمة دفع متكاملة - دعم فني - مساعدة الذكاء الاصطناعي - تقارير مخصصة", + features: ["دفع آمن", "دعم فني", "مساعدة الذكاء", "تقارير مخصصة"] }, - ], - }, - }, + speed: { + title: "السرعة والكفاءة", + description: "أداء سريع وواجهة مبسطة", + details: "واجهة مستخدم محسنة - إنجاز المهام بشكل أسرع - تجربة مستخدم سلسة - أداء عالي", + features: ["واجهة سريعة", "إنجاز أسرع", "تجربة سلسة", "أداء عالي"] + }, + network: { + title: "شبكة الشركاء", + description: "اتصال مع مزودي خدمات متعددين", + details: "شركات تخليص جمركي معتمدة - شركات شحن موثوقة - مزودي خدمات متنوعين - شبكة عالمية", + features: ["وسطاء معتمدون", "شركات شحن", "مزودون متنوعون", "شبكة عالمية"] + } + }, + reasons: { + title: "لماذا تختار TradeSafe؟", + speed: { + text: "سرعة الأداء والاستجابة", + description: "واجهة أسرع بنسبة 30% لإنجاز المهام" + }, + reliability: { + text: "موثوقية وأمان عالي", + description: "أنظمة دفع آمنة وحماية للبيانات" + }, + connection: { + text: "اتصال عالمي", + description: "شبكة من مقدمي الخدمات الدوليين" + }, + communication: { + text: "تواصل مباشر", + description: "دردشة فورية مع جميع الأطراف" + }, + time: { + text: "توفير الوقت", + description: "إدارة التجارة الدولية في بضع نقرات" + }, + solutions: { + text: "حلول متكاملة", + description: "منصة شاملة لجميع احتياجات التجارة" + }, + cta: { + title: "تجربة التجارة الدولية في جيبك", + subtitle: "انضم إلى منصة TradeSafe الآن وتمتع بجميع مزايا إدارة التجارة الدولية بسهولة وسرعة", + start: "ابدأ الآن", + presentation: "شاهد عرض تقديمي" + } + }, + buttons: { + expandAll: "فتح جميع البطاقات", + collapseAll: "طي جميع البطاقات", + showDetails: "عرض جميع التفاصيل", + next: "التالي", + prev: "السابق", + page: "الصفحة {{current}} من {{total}}", + startNow: "ابدأ الآن", + viewPresentation: "شاهد عرض تقديمي" + } + } + } }, + de: { translation: { nav: { @@ -194,6 +321,7 @@ const resources = { about: "Über uns", contact: "Kontakt", }, + home: { phrases: [ "Bau strategischer Tankstellen und Lager", @@ -208,75 +336,140 @@ const resources = { subtitle2: "Integrierte Lösungen für Bau, Entwicklung und Wartung von Tankstellen", contactUs: "Kontaktieren Sie uns", }, + about: { title: "Über uns", description: "Wir sind spezialisiert auf Kraftstoffinfrastrukturlösungen und bieten umfassende Dienstleistungen einschließlich Design, Bau, Wartung und Entwicklung von Tankstellen und Lagereinrichtungen.", }, + contact: { title: "Kontaktieren Sie uns", - subtitle: "Unsere Expertise dient allen: von der einfachsten Station bis zur größten Stationskette und von sekundären Lagern bis zu strategischen Lagern. Kontaktieren Sie uns für professionelle Lösungen mit internationalen Standards", + subtitle: "Bereit, Ihnen rund um die Uhr zu dienen", address: "Adresse", addressText: "Hauptsitz: Syrien - Damas - Baramkeh\nFlexible Büros: Homs - Fairouzeh, Alep - Industriezone, Tartous - Dubai-Straße\nArbeitsgebiete: Bereit zur Durchführung von Arbeiten in allen syrischen Gouvernements", phone: "Telefonnummern", email: "E-Mail", - formTitle: "Kontaktieren Sie uns und lassen Sie uns Ihre Hände bei der Schaffung von Erfolg sein", + formTitle: "Kontaktieren Sie uns und beginnen Sie Ihre internationale Handelsreise mit Vertrauen", name: "Name", - nameePlaceholder: "Geben Sie Ihren Namen ein", + namePlaceholder: "Geben Sie Ihren Namen ein", emailPlaceholder: "beispiel@beispiel.com", message: "Nachricht", messagePlaceholder: "Schreiben Sie hier Ihre Nachricht", send: "Senden", - successMessage: "Nachricht erfolgreich gesendet ", - errorMessage: "Beim Senden ist ein Fehler aufgetreten ", + successMessage: "Nachricht erfolgreich gesendet", + errorMessage: "Beim Senden ist ein Fehler aufgetreten", + contactSection: { + title: "Bereit, Ihnen rund um die Uhr zu dienen", + description: "Unser Team ist verfügbar, um Ihre Anfragen zu beantworten und die besten Lösungen für Ihre Projekte zu bieten", + badges: [ + "Direkter Anruf", + "Technischer Support", + "Schnelle Reaktion", + "Integrierte Lösungen" + ] + } }, - services: { - title: "Unsere Dienstleistungen", - subtitle: "Wir bieten umfassende Dienstleistungen einschließlich Design, Bau, Wartung und Entwicklung von Tankstellen und Lagereinrichtungen.", - futureVision: "Unser Ausblick", - whyChooseUs: "Warum uns wählen", - moreServices: "Weitere unserer Leistungen", - futureVisionText: "Wir arbeiten daran, Tankstellen durch Effizienz, Nachhaltigkeit und Servicequalität zu optimieren. Unser Ziel ist es, ein reibungsloseres Tankerlebnis zu ermöglichen und die Umweltbelastung zu reduzieren.", - reasons: [ - "24/7 schnelle Reaktion auf alle Anfragen und Notfälle", - "Umsetzung nach internationalen Sicherheits- und Präzisionsstandards", - "Bereitstellung und Installation fortschrittlicher Automatisierungssysteme für die Fernsteuerung mehrerer Stationen von einem einheitlichen Kontrollzentrum", - "Kostenlose Beratungen von spezialisierten Experten, die nach Kundenbedürfnissen für Stationen und Verteilungssysteme entwickelt wurden", - "Bereitstellung der neuesten hocheffizienten Erdölausrüstung und -zubehör mit Garantien von einem bis fünf Jahren", - ], - items: [{ - title: "Ingenieurstudien & Tankstellenbau", - text: "Bau von Tankstellen und Lagereinrichtungen nach internationalen Qualitäts- und Sicherheitsstandards.", - details: "Bereitstellung von Ingenieurstudien\nDurchführung von Zivil- und Metallarbeiten\nLieferung und Installation von Tankstellenausrüstung\nPrüfung und Lieferung mit 2-jähriger Garantie für alle Arbeiten", + + tradesafe: { + subtitle: "Eine innovative Plattform, die Händler mit Zollmaklern und Reedereien verbindet, um den internationalen Handel zu vereinfachen", + services: { + title: "TradeSafe Dienstleistungen", + platform: { + title: "Internationale Handelsplattform", + description: "Verknüpfen Sie Händler mit Logistikdienstleistern", + details: "Erstellen Sie Anfragen einfach - Erhalten Sie mehrere Angebote - Direkte Kommunikation mit Anbietern - Umfassendes Bewertungssystem", + features: ["Anfragen Erstellen", "Mehrere Angebote", "Direkter Chat", "Bewertungssystem"] }, - { - title: "Stations- und Lagerentwicklung", - text: "Kapazitätserweiterung, Pumpenleistungssteigerung und intelligente Überwachungslösungen.", - details: "Regelmäßige Wartung für Pumpen und Tanks\nLeistungsverbesserung mit neuesten Technologien\nInfrastruktur-Upgrade für Stationen\nBereitstellung intelligenter Lösungen für Fernüberwachung", + orders: { + title: "Auftragsverwaltung", + description: "Verfolgen Sie Ihre Sendungen in Echtzeit", + details: "Überwachen Sie den Sendungsstatus - Sofortige Updates - Detaillierte Berichte - Vollständige Aufzeichnungen", + features: ["Live-Verfolgung", "Sofortige Updates", "Detaillierte Berichte", "Aufzeichnungen"] }, - { - title: "Umfassende Wartung", - text: "Vorbeugende und Notfallwartung einschließlich", - details: "Travaux civils\nElektronische Automatisierung\nElektrische Arbeiten\nMechanische Arbeiten", + communication: { + title: "Direkte Kommunikation", + description: "Chat innerhalb der App mit Partnern", + details: "Sofortige Kommunikation mit Zollmaklern - Chat mit Reedereien - Dokumentenaustausch - Gesprächsverlauf speichern", + features: ["Sofort-Chat", "Dateiaustausch", "Chat-Verlauf", "Benachrichtigungen"] }, - { - title: "Tank-Lebensdauerinspektion, Reinigung und Kalibrierung", - text: "Professionelle Reinigung mit spezialisierten Materialien zur Gewährleistung der Tanksicherheit und Kraftstoffqualität.", - details: "Détermination de la durée de vie technique des réservoirs avec des tests UT-MT-HT-PT-Tests\nNettoyage des réservoirs de carburant utilisant des protocoles internationaux", + notifications: { + title: "Sofortige Benachrichtigungen", + description: "Bleiben Sie über alle Updates informiert", + details: "Benachrichtigungen über neue Angebote - Updates zum Auftragsstatus - Nachrichten von Partnern - Zahlungsbenachrichtigungen", + features: ["Neue Angebote", "Status-Updates", "Partner-Nachrichten", "Warnungen"] }, - { - title: "Spezialisierte technische Tests", - text: "Tests avancés incluant", - details: "Liquides pénétrants pour réservoirs\net canalisations\nOndes ultrasoniques\nTests de champ magnétique", + dashboard: { + title: "Intelligentes Dashboard", + description: "Intelligente Tools für Entscheidungen", + details: "Marktanalyse - Leistungsberichte - Wichtige Leistungskennzahlen - KI-basierte Empfehlungen", + features: ["Marktanalyse", "Leistungsberichte", "KPIs", "Intelligente Empfehlungen"] }, - { - title: "Sistems d'Automatisation et de Surveillance", - text: "Solutions numériques avancées incluant", - details: "Gestion de plusieurs stations-service à distance depuis un centre de contrôle unifié\nSurveillance en temps réel des performances des stations et analyse de données pour améliorer l'efficacité opérationnelle", + solutions: { + title: "Integrierte Lösungen", + description: "Sichere Zahlung und Zusatzfunktionen", + details: "Integrierte Zahlungssysteme - Technischer Support - KI-Unterstützung - Benutzerdefinierte Berichte", + features: ["Sichere Zahlung", "Technischer Support", "KI-Unterstützung", "Benutzerdefinierte Berichte"] }, - ], - }, - }, + speed: { + title: "Geschwindigkeit und Effizienz", + description: "Schnelle Leistung und vereinfachte Schnittstelle", + details: "Verbesserte Benutzeroberfläche - Schnellere Aufgabenbearbeitung - Nahtloses Nutzererlebnis - Hohe Leistung", + features: ["Schnelle Schnittstelle", "Schnellere Bearbeitung", "Nahtloses Erlebnis", "Hohe Leistung"] + }, + network: { + title: "Partnernetzwerk", + description: "Verbindung mit mehreren Dienstleistern", + details: "Zertifizierte Zollabfertigungsunternehmen - Zuverlässige Reedereien - Vielfältige Dienstleister - Globales Netzwerk", + features: ["Zertifizierte Makler", "Reedereien", "Vielfältige Anbieter", "Globales Netzwerk"] + } + }, + reasons: { + title: "Warum TradeSafe wählen?", + speed: { + text: "Geschwindigkeit der Leistung und Reaktion", + description: "30 % schnellere Oberfläche für Aufgabenbearbeitung" + }, + reliability: { + text: "Hohe Zuverlässigkeit und Sicherheit", + description: "Sichere Zahlungssysteme und Datenschutz" + }, + connection: { + text: "Globale Verbindung", + description: "Netzwerk internationaler Dienstleister" + }, + communication: { + text: "Direkte Kommunikation", + description: "Sofortiger Chat mit allen Parteien" + }, + time: { + text: "Zeitersparnis", + description: "Internationalen Handel mit wenigen Klicks verwalten" + }, + solutions: { + text: "Integrierte Lösungen", + description: "Umfassende Plattform für alle Handelsbedürfnisse" + }, + cta: { + title: "Internationale Handelserfahrung in Ihrer Tasche", + subtitle: "Treten Sie jetzt der TradeSafe-Plattform bei und genießen Sie alle Vorteile der einfachen und schnellen Verwaltung des internationalen Handels", + start: "Jetzt Starten", + presentation: "Präsentation Ansehen" + } + }, + buttons: { + expandAll: "Alle Karten Erweitern", + collapseAll: "Alle Karten Einklappen", + showDetails: "Alle Details Anzeigen", + next: "Weiter", + prev: "Zurück", + page: "Seite {{current}} von {{total}}", + startNow: "Jetzt Starten", + viewPresentation: "Präsentation Ansehen" + } + } + } }, + zh: { translation: { nav: { @@ -285,6 +478,7 @@ const resources = { about: "关于我们", contact: "联系我们", }, + home: { phrases: [ "建设战略加油站和仓库", @@ -299,75 +493,140 @@ const resources = { subtitle2: "建设、开发和维护加油站的综合解决方案", contactUs: "联系我们", }, + about: { title: "关于我们", description: "我们专注于燃料基础设施解决方案,提供包括设计、建设、维护和开发加油站及储存设施在内的综合服务。", }, + contact: { title: "联系我们", - subtitle: "我们的专业知识为所有人服务:从最简单的站点到最大的连锁站点,从二级仓库到战略仓库。联系我们获得符合国际标准的专业解决方案", + subtitle: "随时准备为您服务", address: "地址", addressText: "总部:叙利亚 - 大马士革 - 巴拉姆凯\n灵活办公室:霍姆斯 - 费鲁泽,阿勒颇 - 工业区,塔尔图斯 - 迪拜街\n工作区域:准备在所有叙利亚省份实施工程", phone: "电话号码", email: "电子邮件", - formTitle: "联系我们,让我们成为您创造成就的双手", + formTitle: "联系我们,开始您的国际贸易旅程", name: "姓名", - nameePlaceholder: "输入您的姓名", + namePlaceholder: "输入您的姓名", emailPlaceholder: "example@example.com", message: "消息", messagePlaceholder: "在此写下您的消息", send: "发送", - successMessage: "消息发送成功 ", - errorMessage: "发送时发生错误 ", + successMessage: "消息发送成功", + errorMessage: "发送时发生错误", + contactSection: { + title: "随时准备为您服务", + description: "我们的团队随时准备回答您的疑问并为您的项目提供最佳解决方案", + badges: [ + "直接通话", + "技术支持", + "快速响应", + "综合解决方案" + ] + } }, - services: { - title: "我们的服务", - subtitle: "我们提供全面的服务,包括加油站和储存设施的设计、建设、维护和开发。", - futureVision: "我们的未来展望", - whyChooseUs: "为什么选择我们", - futureVisionText: "我们致力于通过提高效率、可持续性和服务质量来提升加油站的水平。我们的目标是提供更顺畅的加油体验,并减少对环境的影响。", - moreServices: "更多服务", - reasons: [ - "24/7快速响应所有请求和紧急情况", - "按照国际安全和精度标准实施", - "提供和安装先进的自动化系统,从统一控制中心远程控制多个站点", - "专业专家根据客户对站点和分配系统的需求设计的免费咨询", - "提供最新的高效石油设备和配件,保修期从一年到五年不等", - ], - items: [{ - title: "工程研究和加油站建设", - text: "根据国际质量和安全标准建设加油站和储存设施。", - details: "提供工程研究\n实施土木和金属工程\n供应和安装加油站设备\n测试和交付,所有工程享有2年保修", + + tradesafe: { + subtitle: "连接贸易商与海关代理和航运公司的创新平台,简化国际贸易操作", + services: { + title: "TradeSafe 服务", + platform: { + title: "国际贸易平台", + description: "连接贸易商与物流服务提供商", + details: "轻松创建请求 - 接收多个报价 - 直接与供应商沟通 - 全面的评级系统", + features: ["创建请求", "多个报价", "直接聊天", "评级系统"] }, - { - title: "站点和储存开发", - text: "容量扩展、泵功率增加和智能监控解决方案。", - details: "泵和油罐的定期维护\n使用最新技术改善性能\n站点基础设施升级\n提供远程监控的智能解决方案", + orders: { + title: "订单管理", + description: "实时跟踪您的货物", + details: "监控货物状态 - 即时更新 - 详细报告 - 完整记录", + features: ["实时跟踪", "即时更新", "详细报告", "记录"] }, - { - title: "全面维护", - text: "预防性和紧急维护包括", - details: "土木工程\n电子自动化\n电气工程\n机械工程", + communication: { + title: "直接沟通", + description: "与合作伙伴的应用内聊天", + details: "与海关代理即时沟通 - 与航运公司聊天 - 文件共享 - 保存聊天历史", + features: ["即时聊天", "文件共享", "聊天历史", "通知"] }, - { - title: "油罐技术寿命检查、清洁和校准", - text: "使用专业材料进行专业清洁,确保油罐安全和燃料质量。", - details: "通过UT-MT-HT-PT测试确定油罐的技术寿命\n使用国际协议清洁燃料罐", + notifications: { + title: "即时通知", + description: "随时了解所有更新", + details: "新报价通知 - 订单状态更新 - 合作伙伴消息 - 付款提醒", + features: ["新报价", "状态更新", "合作伙伴消息", "提醒"] }, - { - title: "专业技术测试", - text: "高级测试包括", - details: "油罐渗透液体\n和管道\n超声波\n磁场测试", + dashboard: { + title: "智能仪表板", + description: "决策的智能工具", + details: "市场分析 - 绩效报告 - 关键绩效指标 - 基于AI的建议", + features: ["市场分析", "绩效报告", "关键绩效指标", "智能建议"] }, - { - title: "自动化和监控系统", - text: "先进的数字解决方案包括", - details: "从统一控制中心远程管理多个加油站\n实时监控站点性能和数据分析以提高运营效率", + solutions: { + title: "综合解决方案", + description: "安全支付和附加功能", + details: "集成支付系统 - 技术支持 - AI协助 - 自定义报告", + features: ["安全支付", "技术支持", "AI协助", "自定义报告"] }, - ], - }, - }, + speed: { + title: "速度和效率", + description: "快速性能和简化界面", + details: "改进的用户界面 - 更快的任务完成 - 流畅的用户体验 - 高性能", + features: ["快速界面", "更快完成", "流畅体验", "高性能"] + }, + network: { + title: "合作伙伴网络", + description: "与多个服务提供商连接", + details: "认证的清关公司 - 可靠的航运公司 - 多样化的服务提供商 - 全球网络", + features: ["认证经纪人", "航运公司", "多样化提供商", "全球网络"] + } + }, + reasons: { + title: "为什么选择TradeSafe?", + speed: { + text: "性能和响应速度", + description: "完成任务速度快30%的界面" + }, + reliability: { + text: "高可靠性和安全性", + description: "安全支付系统和数据保护" + }, + connection: { + text: "全球连接", + description: "国际服务提供商网络" + }, + communication: { + text: "直接沟通", + description: "与所有方即时聊天" + }, + time: { + text: "节省时间", + description: "点击几下即可管理国际贸易" + }, + solutions: { + text: "综合解决方案", + description: "满足所有贸易需求的综合平台" + }, + cta: { + title: "口袋中的国际贸易体验", + subtitle: "立即加入TradeSafe平台,享受轻松快速管理国际贸易的所有好处", + start: "立即开始", + presentation: "查看演示" + } + }, + buttons: { + expandAll: "展开所有卡片", + collapseAll: "折叠所有卡片", + showDetails: "显示所有详情", + next: "下一页", + prev: "上一页", + page: "第 {{current}} 页,共 {{total}} 页", + startNow: "立即开始", + viewPresentation: "查看演示" + } + } + } }, + fr: { translation: { nav: { @@ -376,6 +635,7 @@ const resources = { about: "À propos", contact: "Contact", }, + home: { phrases: [ "Créer des stations de carburant stratégiques et des entrepôts", @@ -390,75 +650,141 @@ const resources = { subtitle2: "Solutions complètes pour la construction, le développement et l'entretien des stations-service", contactUs: "Contactez-nous", }, + about: { title: "À propos de nous", description: "Nous nous spécialisons dans les solutions d'infrastructure de carburant où nous fournissons des services complets incluant la conception, la construction, la maintenance et le développement de stations-service et d'installations de stockage.", }, + contact: { title: "Contactez-nous", - subtitle: "Notre expertise sert tout le monde : de la station la plus simple à la plus grande chaîne de stations et des entrepôts secondaires aux entrepôts stratégiques. Contactez-nous pour des solutions professionnelles aux normes internationales", + subtitle: "Prêts à vous servir 24h/24", address: "Adresse", addressText: "Siège social : Syrie - Damas - Baramkeh\nBureaux flexibles : Homs - Fairouzeh, Alep - Zone industrielle, Tartous - Rue de Dubaï\nZones de travail : Prêts à mettre en œuvre des travaux dans tous les gouvernorats syriens", phone: "Numéros de téléphone", email: "E-mail", - formTitle: "Contactez-nous et laissez-nous être vos mains dans la création de réalisations", + formTitle: "Contactez-nous et commencez votre voyage dans le commerce international avec confiance", name: "Nom", - nameePlaceholder: "Entrez votre nom", + namePlaceholder: "Entrez votre nom", emailPlaceholder: "exemple@exemple.com", message: "Message", messagePlaceholder: "Écrivez votre message ici", send: "Envoyer", - successMessage: "Message envoyé avec succès ", - errorMessage: "Une erreur s'est produite lors de l'envoi ", + successMessage: "Message envoyé avec succès", + errorMessage: "Une erreur s'est produite lors de l'envoi", + contactSection: { + title: "Prêts à vous servir 24h/24", + description: "Notre équipe est disponible pour répondre à vos questions et fournir les meilleures solutions pour vos projets", + badges: [ + "Appel direct", + "Support technique", + "Réponse rapide", + "Solutions intégrées" + ] + } }, - services: { - title: "Nos Services", - subtitle: "Nous fournissons des services complets incluant la conception, la construction, la maintenance et le développement de stations-service et d'installations de stockage.", - futureVision: "Nos perspectives d'avenir", - whyChooseUs: "Pourquoi nous choisir", - moreServices: "Plus de nos services", - futureVisionText: "Nous nous efforçons d'améliorer l'efficacité, la durabilité et la qualité du service des stations-service. Notre objectif est d'offrir une expérience de ravitaillement plus fluide et de réduire l'impact environnemental.", - reasons: [ - "Réponse rapide 24/7 à toutes les demandes et urgences", - "Exécuté conformément aux normes mondiales de sécurité et de précision", - "Fourniture et installation de systèmes d'automatisation avancés pour le contrôle à distance de plusieurs stations depuis un centre de contrôle unifié", - "Consultations gratuites d'experts spécialisés conçues selon les besoins des clients pour les stations et systèmes de distribution", - "Fourniture des équipements et accessoires pétroliers les plus récents et hautement efficaces avec des garanties allant d'un à cinq ans", - ], - items: [{ - title: "Études d'ingénierie et construction de stations-service", - text: "Construction de stations-service et d'installations de stockage selon les normes internationales de qualité et de sécurité.", - details: "Fourniture d'études d'ingénierie \nMise en œuvre de travaux civils et métalliques\nFourniture et installation d'équipements de stations-service\nTests et livraison avec garantie de 2 ans pour tous les travaux", + + + tradesafe: { + subtitle: "Une plateforme innovante qui relie les commerçants aux courtiers en douane et aux compagnies maritimes pour simplifier les opérations de commerce international", + services: { + title: "Services TradeSafe", + platform: { + title: "Plateforme de Commerce International", + description: "Relier les commerçants aux prestataires de services logistiques", + details: "Créez des demandes facilement - Recevez plusieurs offres - Communication directe avec les fournisseurs - Système d'évaluation complet", + features: ["Créer des Demandes", "Offres Multiples", "Chat Direct", "Système d'Évaluation"] }, - { - title: "Développement de Stations et de Stockage", - text: "Expansion de capacité, augmentation de puissance de pompe et solutions de surveillance intelligente.", - details: "Maintenance périodique pour pompes et réservoirs\nAmélioration des performances utilisant les dernières technologies\nMise à niveau de l'infrastructure pour les stations\nFourniture de solutions intelligentes pour la surveillance à distance", + orders: { + title: "Gestion des Commandes", + description: "Suivez vos expéditions en temps réel", + details: "Surveillez l'état de l'expédition - Mises à jour instantanées - Rapports détaillés - Archives complètes", + features: ["Suivi en Direct", "Mises à Jour Instantanées", "Rapports Détaillés", "Archives"] }, - { - title: "Maintenance Complète", - text: "Maintenance préventive et d'urgence incluant", - details: "Travaux civils\nAutomatisation électronique\nTravaux électriques\nTravaux mécaniques", + communication: { + title: "Communication Directe", + description: "Chat dans l'application avec les partenaires", + details: "Communication instantanée avec les courtiers en douane - Chat avec les compagnies maritimes - Partage de documents - Sauvegarde de l'historique des conversations", + features: ["Chat Instantané", "Partage de Fichiers", "Historique des Chats", "Notifications"] }, - { - title: "Inspection de Durée de Vie Technique des Réservoirs, Nettoyage et Calibrage", - text: "Nettoyage professionnel utilisant des matériaux spécialisés pour assurer la sécurité des réservoirs et la qualité du carburant.", - details: "Détermination de la durée de vie technique des réservoirs avec des tests UT-MT-HT-PT\nNettoyage des réservoirs de carburant utilisant des protocoles internationaux", + notifications: { + title: "Notifications Instantanées", + description: "Restez informé de toutes les mises à jour", + details: "Notifications de nouvelles offres - Mises à jour de l'état des commandes - Messages des partenaires - Alertes de paiement", + features: ["Nouvelles Offres", "Mises à Jour de Statut", "Messages des Partenaires", "Alertes"] }, - { - title: "Tests Techniques Spécialisés", - text: "Tests avancés incluant", - details: "Liquides perméables pour réservoirs\net canalisations Contrôle\npar ultrasons\nTests de champ magnétique", + dashboard: { + title: "Tableau de Bord Intelligent", + description: "Outils intelligents pour la prise de décision", + details: "Analyse du marché - Rapports de performance - Indicateurs clés de performance - Recommandations basées sur l'IA", + features: ["Analyse du Marché", "Rapports de Performance", "ICP", "Recommandations Intelligentes"] }, - { - title: "Systèmes d'Automatisation et de Surveillance", - text: "Solutions numériques avancées incluant", - details: "Gestion de plusieurs stations-service à distance depuis un centre de contrôle unifié\nSurveillance en temps réel des performances des stations et analyse de données pour améliorer l'efficacité opérationnelle", + solutions: { + title: "Solutions Intégrées", + description: "Paiement sécurisé et fonctionnalités supplémentaires", + details: "Systèmes de paiement intégrés - Support technique - Assistance IA - Rapports personnalisés", + features: ["Paiement Sécurisé", "Support Technique", "Assistance IA", "Rapports Personnalisés"] }, - ], - }, - }, + speed: { + title: "Vitesse et Efficacité", + description: "Performances rapides et interface simplifiée", + details: "Interface utilisateur améliorée - Achèvement plus rapide des tâches - Expérience utilisateur fluide - Haute performance", + features: ["Interface Rapide", "Achèvement Plus Rapide", "Expérience Fluide", "Haute Performance"] + }, + network: { + title: "Réseau de Partenaires", + description: "Connexion avec plusieurs prestataires de services", + details: "Sociétés de dédouanement certifiées - Compagnies maritimes fiables - Prestataires de services diversifiés - Réseau mondial", + features: ["Courtiers Certifiés", "Compagnies Maritimes", "Prestataires Diversifiés", "Réseau Mondial"] + } + }, + reasons: { + title: "Pourquoi choisir TradeSafe ?", + speed: { + text: "Vitesse des performances et de la réponse", + description: "Interface 30% plus rapide pour accomplir les tâches" + }, + reliability: { + text: "Fiabilité et sécurité élevées", + description: "Systèmes de paiement sécurisés et protection des données" + }, + connection: { + text: "Connexion mondiale", + description: "Réseau de prestataires de services internationaux" + }, + communication: { + text: "Communication directe", + description: "Chat instantané avec toutes les parties" + }, + time: { + text: "Économie de temps", + description: "Gestion du commerce international en quelques clics" + }, + solutions: { + text: "Solutions intégrées", + description: "Plateforme complète pour tous les besoins commerciaux" + }, + cta: { + title: "Expérience du commerce international dans votre poche", + subtitle: "Rejoignez la plateforme TradeSafe dès maintenant et profitez de tous les avantages de la gestion du commerce international facilement et rapidement", + start: "Commencer Maintenant", + presentation: "Voir la Présentation" + } + }, + buttons: { + expandAll: "Développer Toutes les Cartes", + collapseAll: "Réduire Toutes les Cartes", + showDetails: "Afficher Tous les Détails", + next: "Suivant", + prev: "Précédent", + page: "Page {{current}} sur {{total}}", + startNow: "Commencer Maintenant", + viewPresentation: "Voir la Présentation" + } + } + } }, + it: { translation: { nav: { @@ -467,6 +793,7 @@ const resources = { about: "Chi siamo", contact: "Contatti", }, + home: { phrases: [ "Costruzione di stazioni di servizio e magazzini strategici", @@ -481,10 +808,13 @@ const resources = { subtitle2: "Soluzioni integrate per costruzione, sviluppo e manutenzione stazioni di servizio", contactUs: "Contattaci", }, + about: { title: "Chi siamo", description: "Siamo specializzati in soluzioni per infrastrutture di carburante dove forniamo servizi completi inclusi progettazione, costruzione, manutenzione e sviluppo di stazioni di servizio e strutture di stoccaggio.", }, + + // Contact Page contact: { title: "Contattaci", subtitle: "La nostra competenza serve tutti: dalla stazione più semplice alla più grande catena di stazioni e dai magazzini secondari ai magazzini strategici. Contattaci per soluzioni professionali con standard internazionali", @@ -494,62 +824,114 @@ const resources = { email: "Email", formTitle: "Contattaci e lascia che siamo le tue mani nel creare successi", name: "Nome", - nameePlaceholder: "Inserisci il tuo nome", + namePlaceholder: "Inserisci il tuo nome", emailPlaceholder: "esempio@esempio.com", message: "Messaggio", messagePlaceholder: "Scrivi qui il tuo messaggio", send: "Invia", - successMessage: "Messaggio inviato con successo ", - errorMessage: "Si è verificato un errore durante l'invio ", + successMessage: "Messaggio inviato con successo", + errorMessage: "Si è verificato un errore durante l'invio", }, - services: { - title: "I Nostri Servizi", - subtitle: "Forniamo servizi completi inclusi progettazione, costruzione, manutenzione e sviluppo di stazioni di servizio e strutture di stoccaggio.", - futureVision: "La nostra prospettiva futura", - whyChooseUs: "Perché scegliere noi", - moreServices: "Altri nostri servizi", - futureVisionText: "Ci impegniamo a migliorare le stazioni di servizio migliorandone l'efficienza, la sostenibilità e la qualità del servizio. Il nostro obiettivo è offrire un'esperienza di rifornimento più fluida e ridurre l'impatto ambientale.", - reasons: [ - "Risposta rapida 24/7 a tutte le richieste ed emergenze", - "Implementazione secondo standard internazionali di sicurezza e precisione", - "Fornitura e installazione di sistemi di automazione avanzati per il controllo remoto di più stazioni da un centro di controllo unificato", - "Consultazioni gratuite da esperti specializzati progettate secondo le esigenze del cliente per stazioni e sistemi di distribuzione", - "Fornitura delle più recenti attrezzature e accessori petroliferi ad alta efficienza con garanzie da uno a cinque anni", - ], - servicesList: [{ - title: "Studi di Ingegneria e Costruzione Stazioni di Servizio", - text: "Costruzione di stazioni di servizio e strutture di stoccaggio secondo standard internazionali di qualità e sicurezza.", - details: "Fornitura di studi di ingegneria\nImplementazione di lavori civili e metallici\nFornitura e installazione di attrezzature per stazioni di servizio\nTest e consegna con garanzia di 2 anni per tutti i lavori", + + tradesafe: { + subtitle: "Una piattaforma innovativa che collega i commercianti con agenti doganali e compagnie di spedizione per semplificare le operazioni di commercio internazionale", + services: { + title: "Servizi TradeSafe", + platform: { + title: "Piattaforma di Commercio Internazionale", + description: "Collega i commercianti con i fornitori di servizi logistici", + details: "Crea richieste facilmente - Ricevi più offerte - Comunicazione diretta con i fornitori - Sistema di valutazione completo", + features: ["Crea Richieste", "Offerte Multiple", "Chat Diretta", "Sistema di Valutazione"] }, - { - title: "Sviluppo Stazioni e Stoccaggio", - text: "Espansione capacità, aumento potenza pompa e soluzioni di monitoraggio intelligente.", - details: "Manutenzione periodica per pompe e serbatoi\nMiglioramento prestazioni utilizzando le ultime tecnologie\nAggiornamento infrastruttura per stazioni\nFornitura di soluzioni intelligenti per monitoraggio remoto", + orders: { + title: "Gestione Ordini", + description: "Traccia le tue spedizioni in tempo reale", + details: "Monitora lo stato della spedizione - Aggiornamenti istantanei - Report dettagliati - Registri completi", + features: ["Tracciamento Live", "Aggiornamenti Istantanei", "Report Dettagliati", "Registri"] }, - { - title: "Manutenzione Completa", - text: "Manutenzione preventiva ed emergenza incluso", - details: "Lavori civili\nAutomazione elettronica\nLavori elettrici\nLavori meccanici", + communication: { + title: "Comunicazione Diretta", + description: "Chat nell'app con i partner", + details: "Comunicazione istantanea con gli agenti doganali - Chat con le compagnie di spedizione - Condivisione documenti - Salvataggio cronologia conversazioni", + features: ["Chat Istantanea", "Condivisione File", "Cronologia Chat", "Notifiche"] }, - { - title: "Ispezione Vita Tecnica Serbatoi, Pulizia e Calibrazione", - text: "Pulizia professionale utilizzando materiali specializzati per garantire sicurezza serbatoi e qualità carburante.", - details: "Determinazione vita tecnica serbatoi con test UT-MT-HT-PT\nPulizia serbatoi carburante utilizzando protocolli internazionali", + notifications: { + title: "Notifiche Istantanee", + description: "Rimani aggiornato su tutti gli aggiornamenti", + details: "Notifiche nuove offerte - Aggiornamenti stato ordini - Messaggi partner - Avvisi pagamento", + features: ["Nuove Offerte", "Aggiornamenti Stato", "Messaggi Partner", "Avvisi"] }, - { - title: "Test Tecnici Specializzati", - text: "Test avanzati incluso", - details: "Liquidi penetranti per serbatoi\ne tubazioni\nOnde ultrasoniche\nTest campo magnetico", + dashboard: { + title: "Dashboard Intelligente", + description: "Strumenti intelligenti per il processo decisionale", + details: "Analisi di mercato - Report prestazioni - Indicatori chiave di prestazione - Raccomandazioni basate su IA", + features: ["Analisi di Mercato", "Report Prestazioni", "KPI", "Raccomandazioni Intelligenti"] }, - { - title: "Sistemi di Automazione e Monitoraggio", - text: "Soluzioni digitali avanzate incluso", - details: "Gestione multiple stazioni di servizio da remoto da un centro di controllo unificato\nMonitoraggio in tempo reale prestazioni stazioni e analisi dati per migliorare efficienza operativa", + solutions: { + title: "Soluzioni Integrate", + description: "Pagamento sicuro e funzionalità aggiuntive", + details: "Sistemi di pagamento integrati - Supporto tecnico - Assistenza IA - Report personalizzati", + features: ["Pagamento Sicuro", "Supporto Tecnico", "Assistenza IA", "Report Personalizzati"] }, - ], - }, - }, - }, + speed: { + title: "Velocità ed Efficienza", + description: "Prestazioni veloci e interfaccia semplificata", + details: "Interfaccia utente migliorata - Completamento attività più veloce - Esperienza utente fluida - Alte prestazioni", + features: ["Interfaccia Veloce", "Completamento Più Veloce", "Esperienza Fluida", "Alte Prestazioni"] + }, + network: { + title: "Rete di Partner", + description: "Connessione con più fornitori di servizi", + details: "Società di sdoganamento certificate - Compagnie di spedizione affidabili - Fornitori di servizi diversificati - Rete globale", + features: ["Agenti Certificati", "Compagnie di Spedizione", "Fornitori Diversificati", "Rete Globale"] + } + }, + reasons: { + title: "Perché scegliere TradeSafe?", + speed: { + text: "Velocità delle prestazioni e della risposta", + description: "Interfaccia 30% più veloce per completare le attività" + }, + reliability: { + text: "Alta affidabilità e sicurezza", + description: "Sistemi di pagamento sicuri e protezione dei dati" + }, + connection: { + text: "Connessione globale", + description: "Rete di fornitori di servizi internazionali" + }, + communication: { + text: "Comunicazione diretta", + description: "Chat istantanea con tutte le parti" + }, + time: { + text: "Risparmio di tempo", + description: "Gestione del commercio internazionale in pochi clic" + }, + solutions: { + text: "Soluzioni integrate", + description: "Piattaforma completa per tutte le esigenze commerciali" + }, + cta: { + title: "Esperienza di commercio internazionale in tasca", + subtitle: "Unisciti ora alla piattaforma TradeSafe e goditi tutti i vantaggi della gestione del commercio internazionale in modo facile e veloce", + start: "Inizia Ora", + presentation: "Visualizza Presentazione" + } + }, + buttons: { + expandAll: "Espandi Tutte le Carte", + collapseAll: "Comprimi Tutte le Carte", + showDetails: "Mostra Tutti i Dettagli", + next: "Avanti", + prev: "Indietro", + page: "Pagina {{current}} di {{total}}", + startNow: "Inizia Ora", + viewPresentation: "Visualizza Presentazione" + } + } + } + } }; i18n