diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 544b548..3f20100 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,38 +3,40 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import TextAbout from "@/components/sections/about/TextAbout"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Zap, Award, Users, Target } from "lucide-react"; +import { Zap, Award, Users, Lightbulb } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, + { name: "Home", id: "home" }, + { name: "About", id: "about" }, + { name: "Solutions", id: "solutions" }, + { name: "Services", id: "services" }, { name: "Projects", id: "projects" }, - { name: "Contact", id: "/contact" }, + { name: "Blog", id: "blog" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ { title: "Solutions", items: [ - { label: "Industrial Automation", href: "/services" }, - { label: "Robot & Cobot Systems", href: "/services" }, - { label: "Packaging Machinery", href: "/services" }, - { label: "Smart Gate Systems", href: "/services" }, - { label: "Custom Engineering", href: "/services" }, + { label: "Industrial Automation", href: "/solutions" }, + { label: "Robot & Cobot Systems", href: "/solutions" }, + { label: "Packaging Machinery", href: "/solutions" }, + { label: "Smart Gate Systems", href: "/solutions" }, + { label: "Custom Engineering", href: "/solutions" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, + { label: "Our Services", href: "/services" }, { label: "Projects & Portfolio", href: "/" }, - { label: "Services", href: "/services" }, + { label: "Blog & Articles", href: "/" }, { label: "Careers", href: "/" }, { label: "Contact", href: "/contact" }, ], @@ -84,13 +86,13 @@ export default function AboutPage() {
-
- + +
+ +
+ -
- -
-
-
- + -
- -
-
diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6fbc78b..2836091 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -3,11 +3,11 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; -import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import BlogCardThree from "@/components/sections/blog/BlogCardThree"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Lightbulb, TrendingUp } from "lucide-react"; +import { BookOpen, Zap } from "lucide-react"; export default function BlogPage() { const navItems = [ @@ -21,28 +21,25 @@ export default function BlogPage() { const footerColumns = [ { - title: "Solutions", - items: [ - { label: "Industrial Automation", href: "/" }, - { label: "Robot & Cobot Systems", href: "/" }, - { label: "Packaging Machinery", href: "/" }, - { label: "Smart Gate Systems", href: "/" }, - { label: "Custom Engineering", href: "/" }, + title: "Solutions", items: [ + { label: "Industrial Automation", href: "/solutions" }, + { label: "Robot & Cobot Systems", href: "/solutions" }, + { label: "Packaging Machinery", href: "/solutions" }, + { label: "Smart Gate Systems", href: "/solutions" }, + { label: "Custom Engineering", href: "/solutions" }, ], }, { - title: "Company", - items: [ - { label: "About Us", href: "/" }, - { label: "Projects & Portfolio", href: "/" }, + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Projects & Portfolio", href: "/projects" }, { label: "Blog & Articles", href: "/blog" }, { label: "Careers", href: "/" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Case Studies", href: "/" }, { label: "Technical Documentation", href: "/" }, { label: "Support Portal", href: "/" }, @@ -51,8 +48,7 @@ export default function BlogPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: +66 2 123 4567", href: "tel:+6621234567" }, { label: "Email: info@milestones.co.th", href: "mailto:info@milestones.co.th" }, { label: "LINE: @milestones-tech", href: "https://line.me" }, @@ -80,145 +76,74 @@ export default function BlogPage() { brandName="Milestones Technologies" navItems={navItems} button={{ - text: "Request Quote", - href: "/contact", - }} + text: "Request Quote", href: "/contact"}} + /> +
+ +
+
-
- -
+
- - -
-
- -
+
+
); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index df67404..dfe31c0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,11 +3,9 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import ContactText from "@/components/sections/contact/ContactText"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Mail } from "lucide-react"; +import { Mail, Phone, MapPin, Clock } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -21,28 +19,25 @@ export default function ContactPage() { const footerColumns = [ { - title: "Solutions", - items: [ - { label: "Industrial Automation", href: "/" }, - { label: "Robot & Cobot Systems", href: "/" }, - { label: "Packaging Machinery", href: "/" }, - { label: "Smart Gate Systems", href: "/" }, - { label: "Custom Engineering", href: "/" }, + title: "Solutions", items: [ + { label: "Industrial Automation", href: "/solutions" }, + { label: "Robot & Cobot Systems", href: "/solutions" }, + { label: "Packaging Machinery", href: "/solutions" }, + { label: "Smart Gate Systems", href: "/solutions" }, + { label: "Custom Engineering", href: "/solutions" }, ], }, { - title: "Company", - items: [ - { label: "About Us", href: "/" }, + title: "Company", items: [ + { label: "About Us", href: "/about" }, { label: "Projects & Portfolio", href: "/" }, - { label: "Blog & Articles", href: "/blog" }, + { label: "Blog & Articles", href: "/" }, { label: "Careers", href: "/" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Case Studies", href: "/" }, { label: "Technical Documentation", href: "/" }, { label: "Support Portal", href: "/" }, @@ -51,8 +46,7 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone: +66 2 123 4567", href: "tel:+6621234567" }, { label: "Email: info@milestones.co.th", href: "mailto:info@milestones.co.th" }, { label: "LINE: @milestones-tech", href: "https://line.me" }, @@ -80,104 +74,30 @@ export default function ContactPage() { brandName="Milestones Technologies" navItems={navItems} button={{ - text: "Request Quote", - href: "/contact", + text: "Request Quote", href: "/contact" }} />
-
-
- -
-
- -
-
- -
-
- -
-
- -
+
+
@@ -94,25 +95,33 @@ export default function HomePage() { tagAnimation="slide-up" buttons={[ { - text: "Request a Quote", href: "/contact"}, + text: "Request a Quote", href: "/contact" + }, { - text: "Explore Solutions", href: "/"}, + text: "Explore Solutions", href: "/" + }, ]} buttonAnimation="slide-up" background={{ variant: "animated-grid" }} mediaItems={[ { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/industrial-robot-arm-performing-precise--1773981130354-3aca37a1.png?_wi=1", imageAlt: "Industrial robot arm performing precise assembly on factory floor. Modern manufacturing facility wit"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/industrial-robot-arm-performing-precise--1773981130354-3aca37a1.png?_wi=1", imageAlt: "Industrial robot arm performing precise assembly on factory floor. Modern manufacturing facility wit" + }, { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/high-speed-packaging-machinery-in-operat-1773981132057-91de9d07.png?_wi=1", imageAlt: "High-speed packaging machinery in operation. Colorful packaged products moving through conveyor syst"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/high-speed-packaging-machinery-in-operat-1773981132057-91de9d07.png?_wi=1", imageAlt: "High-speed packaging machinery in operation. Colorful packaged products moving through conveyor syst" + }, { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/smart-gate-control-system-display-with-d-1773981131975-1ea8ba37.png?_wi=1", imageAlt: "Smart gate control system display with digital interface showing access control and security feature"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/smart-gate-control-system-display-with-d-1773981131975-1ea8ba37.png?_wi=1", imageAlt: "Smart gate control system display with digital interface showing access control and security feature" + }, { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/collaborative-robot-cobot-working-alongs-1773981130740-14a987e9.png?_wi=1", imageAlt: "Collaborative robot (cobot) working alongside human operator in assembly environment. Safe, modern w"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/collaborative-robot-cobot-working-alongs-1773981130740-14a987e9.png?_wi=1", imageAlt: "Collaborative robot (cobot) working alongside human operator in assembly environment. Safe, modern w" + }, { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-engineering-team-working-on-1773981131698-7cf7cd5d.png?_wi=1", imageAlt: "Professional engineering team working on factory automation project. Engineers examining blueprints "}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-engineering-team-working-on-1773981131698-7cf7cd5d.png?_wi=1", imageAlt: "Professional engineering team working on factory automation project. Engineers examining blueprints " + }, { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/completed-industrial-automation-installa-1773981131997-d20ced9d.png", imageAlt: "Completed industrial automation installation showcasing integrated systems. Multiple conveyor lines,"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/completed-industrial-automation-installa-1773981131997-d20ced9d.png", imageAlt: "Completed industrial automation installation showcasing integrated systems. Multiple conveyor lines," + }, ]} mediaAnimation="blur-reveal" /> @@ -128,19 +137,24 @@ export default function HomePage() { features={[ { id: "industrial-automation", title: "Industrial Automation Systems", author: "Manufacturing Excellence", description: "End-to-end automation solutions for production lines, assembly processes, and manufacturing workflows. Increase productivity by up to 40% with our integrated control systems and real-time monitoring.", tags: ["Production Lines", "Assembly", "Monitoring"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/industrial-automation-control-system-wit-1773981131808-cf06236c.png?_wi=1", imageAlt: "Industrial automation control system with PLC controllers, variable frequency drives, and wiring. Cl"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/industrial-automation-control-system-wit-1773981131808-cf06236c.png?_wi=1", imageAlt: "Industrial automation control system with PLC controllers, variable frequency drives, and wiring. Cl" + }, { id: "robot-cobot", title: "Robot & Cobot Automation", author: "Precision Robotics", description: "Cutting-edge robotic and collaborative robot solutions for precise, repetitive tasks. Perfect for warehousing, assembly, material handling, and specialized manufacturing applications.", tags: ["Robotics", "Cobots", "Material Handling"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/advanced-collaborative-robot-with-articu-1773981131004-a16eab70.png?_wi=1", imageAlt: "Advanced collaborative robot with articulated arms performing complex assembly task. Compact cobot d"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/advanced-collaborative-robot-with-articu-1773981131004-a16eab70.png?_wi=1", imageAlt: "Advanced collaborative robot with articulated arms performing complex assembly task. Compact cobot d" + }, { id: "packaging-machinery", title: "Packaging Machinery Solutions", author: "Production Optimization", description: "Advanced packaging systems for food, pharmaceutical, and consumer goods industries. High-speed, reliable packaging with quality control integration.", tags: ["Packaging", "Quality Control", "High-Speed"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/state-of-the-art-automatic-packaging-sys-1773981131749-3c44c882.png?_wi=1", imageAlt: "State-of-the-art automatic packaging system with multiple stations. Products being filled, sealed, a"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/state-of-the-art-automatic-packaging-sys-1773981131749-3c44c882.png?_wi=1", imageAlt: "State-of-the-art automatic packaging system with multiple stations. Products being filled, sealed, a" + }, { id: "smart-gate", title: "Smart Gate & Access Systems", author: "Security & Convenience", description: "Premium automatic gate solutions for residential, commercial, and industrial properties. Includes remote control, RFID integration, and advanced security features for modern smart living.", tags: ["Smart Gates", "Access Control", "Security"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/modern-premium-automatic-sliding-gate-wi-1773981131408-069d06de.png?_wi=1", imageAlt: "Modern premium automatic sliding gate with remote control and RFID reader. Beautiful residential or "}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/modern-premium-automatic-sliding-gate-wi-1773981131408-069d06de.png?_wi=1", imageAlt: "Modern premium automatic sliding gate with remote control and RFID reader. Beautiful residential or " + }, { id: "custom-engineering", title: "Custom Engineering Solutions", author: "Tailored Innovation", description: "Bespoke automation and engineering solutions designed specifically for your unique operational requirements. From concept to implementation and ongoing support.", tags: ["Engineering", "Customization", "Support"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/custom-engineered-automation-solution-be-1773981131850-3c480c9d.png?_wi=1", imageAlt: "Custom engineered automation solution being installed at client site. Unique integrated system combi"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/custom-engineered-automation-solution-be-1773981131850-3c480c9d.png?_wi=1", imageAlt: "Custom engineered automation solution being installed at client site. Unique integrated system combi" + }, ]} animationType="slide-up" textboxLayout="default" @@ -157,17 +171,23 @@ export default function HomePage() { description="We combine technical expertise, proven track record, and customer-centric approach to deliver automation solutions that transform operations and drive business growth." metrics={[ { - id: "experience", value: "15+", title: "Years of Experience", description: "Trusted by factories and businesses across Southeast Asia since 2009"}, + id: "experience", value: "15+", title: "Years of Experience", description: "Trusted by factories and businesses across Southeast Asia since 2009" + }, { - id: "projects", value: "500+", title: "Projects Completed", description: "Successful installations and implementations across all solution categories"}, + id: "projects", value: "500+", title: "Projects Completed", description: "Successful installations and implementations across all solution categories" + }, { - id: "efficiency", value: "40%", title: "Average Productivity Increase", description: "Clients report significant efficiency gains within first 6 months"}, + id: "efficiency", value: "40%", title: "Average Productivity Increase", description: "Clients report significant efficiency gains within first 6 months" + }, { - id: "satisfaction", value: "98%", title: "Client Satisfaction Rate", description: "Industry-leading customer satisfaction and long-term partnerships"}, + id: "satisfaction", value: "98%", title: "Client Satisfaction Rate", description: "Industry-leading customer satisfaction and long-term partnerships" + }, { - id: "support", value: "24/7", title: "Technical Support", description: "Round-the-clock support team to ensure zero downtime operations"}, + id: "support", value: "24/7", title: "Technical Support", description: "Round-the-clock support team to ensure zero downtime operations" + }, { - id: "roi", value: "8-12", title: "Month ROI Timeline", description: "Most clients achieve return on investment within 8-12 months"}, + id: "roi", value: "8-12", title: "Month ROI Timeline", description: "Most clients achieve return on investment within 8-12 months" + }, ]} animationType="slide-up" textboxLayout="default" @@ -185,22 +205,28 @@ export default function HomePage() { products={[ { id: "project-1", brand: "Automotive Manufacturer", name: "Complete Assembly Line Automation", price: "2.5M THB", rating: 5, - reviewCount: "12", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/complete-automotive-assembly-line-with-m-1773981131944-e95865db.png?_wi=1", imageAlt: "Complete automotive assembly line with multiple robotic arms working in sequence. Complex multi-stat"}, + reviewCount: "12", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/complete-automotive-assembly-line-with-m-1773981131944-e95865db.png?_wi=1", imageAlt: "Complete automotive assembly line with multiple robotic arms working in sequence. Complex multi-stat" + }, { id: "project-2", brand: "Food Processing Plant", name: "High-Speed Packaging System", price: "1.8M THB", rating: 5, - reviewCount: "8", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/food-processing-facility-with-integrated-1773981131923-cf0c3dab.png?_wi=1", imageAlt: "Food processing facility with integrated packaging machinery. Automated filling, sealing, and labeli"}, + reviewCount: "8", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/food-processing-facility-with-integrated-1773981131923-cf0c3dab.png?_wi=1", imageAlt: "Food processing facility with integrated packaging machinery. Automated filling, sealing, and labeli" + }, { id: "project-3", brand: "Electronics Warehouse", name: "Cobot Material Handling System", price: "1.2M THB", rating: 5, - reviewCount: "9", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/warehouse-with-collaborative-robots-mana-1773981131081-518034f7.png?_wi=1", imageAlt: "Warehouse with collaborative robots managing material handling and logistics. Cobots picking and pla"}, + reviewCount: "9", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/warehouse-with-collaborative-robots-mana-1773981131081-518034f7.png?_wi=1", imageAlt: "Warehouse with collaborative robots managing material handling and logistics. Cobots picking and pla" + }, { id: "project-4", brand: "Luxury Residential Complex", name: "Smart Gate Access System", price: "800K THB", rating: 5, - reviewCount: "15", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/luxury-residential-complex-entrance-with-1773981131885-7d86d7ce.png?_wi=1", imageAlt: "Luxury residential complex entrance with installed smart gate system. Beautiful modern gate integrat"}, + reviewCount: "15", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/luxury-residential-complex-entrance-with-1773981131885-7d86d7ce.png?_wi=1", imageAlt: "Luxury residential complex entrance with installed smart gate system. Beautiful modern gate integrat" + }, { id: "project-5", brand: "Chemical Manufacturing", name: "Custom Robotic Production Line", price: "3.2M THB", rating: 5, - reviewCount: "7", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/chemical-manufacturing-facility-with-rob-1773981131785-741649af.png?_wi=1", imageAlt: "Chemical manufacturing facility with robotic production line. Safe automated chemical processing wit"}, + reviewCount: "7", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/chemical-manufacturing-facility-with-rob-1773981131785-741649af.png?_wi=1", imageAlt: "Chemical manufacturing facility with robotic production line. Safe automated chemical processing wit" + }, { id: "project-6", brand: "Pharmaceutical Facility", name: "Integrated Packaging & QC System", price: "2.1M THB", rating: 5, - reviewCount: "11", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/pharmaceutical-facility-with-integrated--1773981135234-da2258a8.png?_wi=1", imageAlt: "Pharmaceutical facility with integrated packaging and quality control system. Automated pill/tablet "}, + reviewCount: "11", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/pharmaceutical-facility-with-integrated--1773981135234-da2258a8.png?_wi=1", imageAlt: "Pharmaceutical facility with integrated packaging and quality control system. Automated pill/tablet " + }, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -217,9 +243,11 @@ export default function HomePage() { title="Trusted by Thailand's Leading Companies" description="Milestones Technologies is the preferred automation partner for major manufacturers, food processors, chemical plants, and property developers across Southeast Asia." names={[ - "Thai Automotive Group", "Bangkok Food Processing", "Southeast Electronics Corp", "Thai Chemical Industries", "Bangkok Pharmaceutical", "Thai Packaging Solutions", "Regional Warehousing Co", "Bangkok Property Developers"]} + "Thai Automotive Group", "Bangkok Food Processing", "Southeast Electronics Corp", "Thai Chemical Industries", "Bangkok Pharmaceutical", "Thai Packaging Solutions", "Regional Warehousing Co", "Bangkok Property Developers" + ]} logos={[ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-corporate-logo-for-automoti-1773981130490-d851f847.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/food-processing-company-professional-log-1773981131364-3e0f1b67.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/electronics-corporation-professional-log-1773981133845-5e6dbc25.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/chemical-manufacturing-company-professio-1773981130788-63944153.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/pharmaceutical-company-professional-logo-1773981130764-ae871848.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/packaging-solutions-company-professional-1773981131039-83d43e45.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/warehouse-and-logistics-company-professi-1773981132381-3ecc38c8.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/real-estate-and-property-development-com-1773981130307-dd93d586.png"]} + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-corporate-logo-for-automoti-1773981130490-d851f847.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/food-processing-company-professional-log-1773981131364-3e0f1b67.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/electronics-corporation-professional-log-1773981133845-5e6dbc25.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/chemical-manufacturing-company-professio-1773981130788-63944153.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/pharmaceutical-company-professional-logo-1773981130764-ae871848.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/packaging-solutions-company-professional-1773981131039-83d43e45.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/warehouse-and-logistics-company-professi-1773981132381-3ecc38c8.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/real-estate-and-property-development-com-1773981130307-dd93d586.png" + ]} textboxLayout="default" useInvertedBackground={false} showCard={true} @@ -234,13 +262,17 @@ export default function HomePage() { author="Somchai Thaichai, Operations Director - Thai Automotive Group" avatars={[ { - src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-male-execu-1773981130512-3b9ae1e1.png", alt: "Somchai Thaichai"}, + src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-male-execu-1773981130512-3b9ae1e1.png", alt: "Somchai Thaichai" + }, { - src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-male-facto-1773981130089-2c759151.png", alt: "Niran Suksomtree"}, + src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-male-facto-1773981130089-2c759151.png", alt: "Niran Suksomtree" + }, { - src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-female-pro-1773981130978-eb2d4e1c.png", alt: "Wanida Kachuay"}, + src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-female-pro-1773981130978-eb2d4e1c.png", alt: "Wanida Kachuay" + }, { - src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-male-busin-1773981131172-a7325777.png", alt: "Pattarapol Moonkhan"}, + src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/professional-headshot-of-thai-male-busin-1773981131172-a7325777.png", alt: "Pattarapol Moonkhan" + }, ]} ratingAnimation="slide-up" avatarsAnimation="slide-up" @@ -254,9 +286,11 @@ export default function HomePage() { background={{ variant: "animated-grid" }} buttons={[ { - text: "Request a Free Consultation", href: "/contact"}, + text: "Request a Free Consultation", href: "/contact" + }, { - text: "Call Us Now", href: "tel:+6621234567"}, + text: "Call Us Now", href: "tel:+6621234567" + }, ]} useInvertedBackground={false} /> diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 99560df..12a1716 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -1,21 +1,21 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { CheckCircle, Award, Zap } from "lucide-react"; +import { CheckCircle, Zap } from "lucide-react"; export default function ProjectsPage() { const navItems = [ { name: "Home", id: "home" }, { name: "About", id: "about" }, { name: "Solutions", id: "solutions" }, - { name: "Projects", id: "/projects" }, - { name: "Blog", id: "/blog" }, + { name: "Projects", id: "projects" }, + { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" }, ]; @@ -58,33 +58,6 @@ export default function ProjectsPage() { }, ]; - const allProjects = [ - { - id: "project-1", brand: "Automotive Manufacturer", name: "Complete Assembly Line Automation", price: "2.5M THB", rating: 5, - reviewCount: "12", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/complete-automotive-assembly-line-with-m-1773981131944-e95865db.png?_wi=1", imageAlt: "Complete automotive assembly line with multiple robotic arms working in sequence. Complex multi-stat"}, - { - id: "project-2", brand: "Food Processing Plant", name: "High-Speed Packaging System", price: "1.8M THB", rating: 5, - reviewCount: "8", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/food-processing-facility-with-integrated-1773981131923-cf0c3dab.png?_wi=1", imageAlt: "Food processing facility with integrated packaging machinery. Automated filling, sealing, and labeli"}, - { - id: "project-3", brand: "Electronics Warehouse", name: "Cobot Material Handling System", price: "1.2M THB", rating: 5, - reviewCount: "9", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/warehouse-with-collaborative-robots-mana-1773981131081-518034f7.png?_wi=1", imageAlt: "Warehouse with collaborative robots managing material handling and logistics. Cobots picking and pla"}, - { - id: "project-4", brand: "Luxury Residential Complex", name: "Smart Gate Access System", price: "800K THB", rating: 5, - reviewCount: "15", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/luxury-residential-complex-entrance-with-1773981131885-7d86d7ce.png?_wi=1", imageAlt: "Luxury residential complex entrance with installed smart gate system. Beautiful modern gate integrat"}, - { - id: "project-5", brand: "Chemical Manufacturing", name: "Custom Robotic Production Line", price: "3.2M THB", rating: 5, - reviewCount: "7", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/chemical-manufacturing-facility-with-rob-1773981131785-741649af.png?_wi=1", imageAlt: "Chemical manufacturing facility with robotic production line. Safe automated chemical processing wit"}, - { - id: "project-6", brand: "Pharmaceutical Facility", name: "Integrated Packaging & QC System", price: "2.1M THB", rating: 5, - reviewCount: "11", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/pharmaceutical-facility-with-integrated--1773981135234-da2258a8.png?_wi=1", imageAlt: "Pharmaceutical facility with integrated packaging and quality control system. Automated pill/tablet "}, - { - id: "project-7", brand: "Beverage Manufacturer", name: "Production Line Optimization", price: "1.5M THB", rating: 5, - reviewCount: "10", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/beverage-production-line-optimization-1773981131900-a1b2c3d4.png?_wi=1", imageAlt: "Beverage manufacturing production line with automated filling and capping systems"}, - { - id: "project-8", brand: "Hospital Facility", name: "Smart Access Control System", price: "900K THB", rating: 5, - reviewCount: "14", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BC5DoKtnbMRErIYJgmPK5zjs5w/hospital-access-control-system-1773981131850-e5f6g7h8.png?_wi=1", imageAlt: "Hospital facility with smart access control and security systems"}, - ]; - return (
-
+ - -
- @@ -204,4 +164,4 @@ export default function ProjectsPage() {
); -} \ No newline at end of file +} diff --git a/src/app/robot-cobot-automation/page.tsx b/src/app/robot-cobot-automation/page.tsx new file mode 100644 index 0000000..bf5ebe3 --- /dev/null +++ b/src/app/robot-cobot-automation/page.tsx @@ -0,0 +1,276 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Zap, Cpu, BarChart3, Award, CheckCircle, Shield } from "lucide-react"; + +export default function RobotCobotAutomationPage() { + const navItems = [ + { name: "Home", id: "home" }, + { name: "About", id: "about" }, + { name: "Solutions", id: "solutions" }, + { name: "Projects", id: "projects" }, + { name: "Blog", id: "blog" }, + { name: "Contact", id: "contact" }, + ]; + + const footerColumns = [ + { + title: "Solutions", items: [ + { label: "Industrial Automation", href: "/solutions" }, + { label: "Robot & Cobot Systems", href: "/robot-cobot-automation" }, + { label: "Packaging Machinery", href: "/solutions" }, + { label: "Smart Gate Systems", href: "/solutions" }, + { label: "Custom Engineering", href: "/solutions" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Projects & Portfolio", href: "/" }, + { label: "Blog & Articles", href: "/" }, + { label: "Careers", href: "/" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Case Studies", href: "/" }, + { label: "Technical Documentation", href: "/" }, + { label: "Support Portal", href: "/" }, + { label: "FAQ", href: "/" }, + { label: "Contact Support", href: "/contact" }, + ], + }, + { + title: "Contact", items: [ + { label: "Phone: +66 2 123 4567", href: "tel:+6621234567" }, + { label: "Email: info@milestones.co.th", href: "mailto:info@milestones.co.th" }, + { label: "LINE: @milestones-tech", href: "https://line.me" }, + { label: "Bangkok, Thailand", href: "/" }, + { label: "Mon-Fri 8:00-18:00 (GMT+7)", href: "/" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/solutions/page.tsx b/src/app/solutions/page.tsx index 1057167..a3f95e2 100644 --- a/src/app/solutions/page.tsx +++ b/src/app/solutions/page.tsx @@ -4,23 +4,20 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; -import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Zap, Lightbulb, Award, CheckCircle, Shield } from "lucide-react"; +import { Zap, Lightbulb, CheckCircle, Layers } from "lucide-react"; export default function SolutionsPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "Solutions", id: "/solutions" }, - { name: "Waste Management", id: "/waste-management" }, - { name: "Plastic Solutions", id: "/plastic-solution" }, - { name: "Plastic Recycle", id: "/plastic-recycle" }, - { name: "Windows & Doors", id: "/window-door" }, - { name: "Robot Cobot", id: "/robot-cobot-automation" }, + { name: "Home", id: "home" }, + { name: "About", id: "about" }, + { name: "Solutions", id: "solutions" }, + { name: "Services", id: "services" }, + { name: "Projects", id: "projects" }, + { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" }, ]; @@ -28,15 +25,16 @@ export default function SolutionsPage() { { title: "Solutions", items: [ { label: "Industrial Automation", href: "/solutions" }, - { label: "Robot & Cobot Systems", href: "/robot-cobot-automation" }, - { label: "Plastic Solutions", href: "/plastic-solution" }, - { label: "Waste Management", href: "/waste-management" }, + { label: "Robot & Cobot Systems", href: "/solutions" }, + { label: "Packaging Machinery", href: "/solutions" }, + { label: "Smart Gate Systems", href: "/solutions" }, { label: "Custom Engineering", href: "/solutions" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, + { label: "Our Services", href: "/services" }, { label: "Projects & Portfolio", href: "/" }, { label: "Blog & Articles", href: "/" }, { label: "Careers", href: "/" }, @@ -87,52 +85,54 @@ export default function SolutionsPage() {
-
+
-
- +
-
+ -
- -
-
diff --git a/src/app/waste-management/page.tsx b/src/app/waste-management/page.tsx index ffbf0c0..2afc78a 100644 --- a/src/app/waste-management/page.tsx +++ b/src/app/waste-management/page.tsx @@ -1,34 +1,36 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Zap, Lightbulb, Award, CheckCircle } from "lucide-react"; +import { Zap, Lightbulb, Award, CheckCircle, Shield } from "lucide-react"; export default function WasteManagementPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Solutions", id: "/solutions" }, - { name: "Waste Management", id: "/waste-management" }, - { name: "Plastic Solutions", id: "/plastic-solution" }, - { name: "Plastic Recycle", id: "/plastic-recycle" }, - { name: "Windows & Doors", id: "/window-door" }, - { name: "Robot Cobot", id: "/robot-cobot-automation" }, + { name: "About", id: "about" }, + { name: "Solutions", id: "solutions" }, + { name: "Waste Management", id: "waste-management" }, + { name: "Projects", id: "projects" }, + { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" }, ]; const footerColumns = [ { title: "Solutions", items: [ - { label: "Industrial Automation", href: "/solutions" }, - { label: "Robot & Cobot Systems", href: "/robot-cobot-automation" }, + { label: "Waste Management Systems", href: "/waste-management" }, { label: "Plastic Solutions", href: "/plastic-solution" }, - { label: "Waste Management", href: "/waste-management" }, + { label: "Plastic Recycling", href: "/plastic-recycle" }, + { label: "Smart Gate Systems", href: "/solutions" }, { label: "Custom Engineering", href: "/solutions" }, ], }, @@ -85,52 +87,60 @@ export default function WasteManagementPage() {
-
+
-
+
-
+ +
+ +
+ +
+ +
+
diff --git a/src/app/window-door-solutions/page.tsx b/src/app/window-door-solutions/page.tsx new file mode 100644 index 0000000..4d88de3 --- /dev/null +++ b/src/app/window-door-solutions/page.tsx @@ -0,0 +1,274 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Zap, Building2, Lightbulb, Award, CheckCircle, Shield } from "lucide-react"; + +export default function WindowDoorSolutionsPage() { + const navItems = [ + { name: "Home", id: "home" }, + { name: "About", id: "about" }, + { name: "Solutions", id: "solutions" }, + { name: "Projects", id: "projects" }, + { name: "Windows & Doors", id: "windows-doors" }, + { name: "Robot & Cobot", id: "robot-cobot" }, + { name: "Contact", id: "contact" }, + ]; + + const footerColumns = [ + { + title: "Solutions", items: [ + { label: "Industrial Automation", href: "/solutions" }, + { label: "Robot & Cobot Systems", href: "/robot-cobot-automation" }, + { label: "Packaging Machinery", href: "/solutions" }, + { label: "Smart Gate Systems", href: "/solutions" }, + { label: "Windows & Doors Solutions", href: "/window-door-solutions" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Projects & Portfolio", href: "/" }, + { label: "Blog & Articles", href: "/" }, + { label: "Careers", href: "/" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Case Studies", href: "/" }, + { label: "Technical Documentation", href: "/" }, + { label: "Support Portal", href: "/" }, + { label: "FAQ", href: "/" }, + { label: "Contact Support", href: "/contact" }, + ], + }, + { + title: "Contact", items: [ + { label: "Phone: +66 2 123 4567", href: "tel:+6621234567" }, + { label: "Email: info@milestones.co.th", href: "mailto:info@milestones.co.th" }, + { label: "LINE: @milestones-tech", href: "https://line.me" }, + { label: "Bangkok, Thailand", href: "/" }, + { label: "Mon-Fri 8:00-18:00 (GMT+7)", href: "/" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file