diff --git a/src/app/solutions/page.tsx b/src/app/solutions/page.tsx index 1057167..6f6bc8d 100644 --- a/src/app/solutions/page.tsx +++ b/src/app/solutions/page.tsx @@ -1,64 +1,63 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; 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, Shield } from "lucide-react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Cog, Building2, Lightbulb, Award } 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: "Projects", id: "projects" }, + { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" }, ]; const footerColumns = [ { - title: "Solutions", items: [ + 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: "Projects & Portfolio", href: "/" }, + title: "Company", + items: [ + { label: "About Us", href: "/" }, + { label: "Projects & Portfolio", href: "/projects" }, { label: "Blog & Articles", href: "/" }, - { label: "Careers", href: "/" }, - { label: "Contact", href: "/contact" }, + { label: "Careers", href: "#" }, + { label: "Contact", href: "/" }, ], }, { - title: "Resources", items: [ - { label: "Case Studies", href: "/" }, - { label: "Technical Documentation", href: "/" }, - { label: "Support Portal", href: "/" }, - { label: "FAQ", href: "/" }, - { label: "Contact Support", href: "/contact" }, + title: "Resources", + items: [ + { label: "Case Studies", href: "#" }, + { label: "Technical Documentation", href: "#" }, + { label: "Support Portal", href: "#" }, + { label: "FAQ", href: "#" }, + { label: "Contact Support", href: "/" }, ], }, { - 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" }, - { label: "Bangkok, Thailand", href: "/" }, - { label: "Mon-Fri 8:00-18:00 (GMT+7)", href: "/" }, + { label: "Bangkok, Thailand", href: "#" }, + { label: "Mon-Fri 8:00-18:00 (GMT+7)", href: "#" }, ], }, ]; @@ -81,58 +80,81 @@ export default function SolutionsPage() { brandName="Milestones Technologies" navItems={navItems} button={{ - text: "Request Quote", href: "/contact"}} + text: "Request Quote", + href: "/", + }} /> -