From 3d739aaeaccdfade5a77b5e35ab5b21b6dbe5d16 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 04:43:40 +0000 Subject: [PATCH] Add src/app/robot-cobot-automation/page.tsx --- src/app/robot-cobot-automation/page.tsx | 276 ++++++++++++++++++++++++ 1 file changed, 276 insertions(+) create mode 100644 src/app/robot-cobot-automation/page.tsx 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}