From fb80b0149b096dbe205a40ace2cc1f89fe70ecb3 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 04:39:33 +0000 Subject: [PATCH] Add src/app/services/page.tsx --- src/app/services/page.tsx | 222 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 222 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..b903510 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,222 @@ +"use client"; + +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 ContactText from "@/components/sections/contact/ContactText"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Zap, Lightbulb, CheckCircle, BarChart3 } from "lucide-react"; + +export default function ServicesPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Projects", id: "projects" }, + { 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" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Projects & Portfolio", href: "/" }, + { label: "Services", href: "/services" }, + { 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