"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 BlogCardThree from "@/components/sections/blog/BlogCardThree"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; import { BookOpen, Zap } from "lucide-react"; export default function BlogPage() { 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: "/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: "/projects" }, { label: "Blog & Articles", href: "/blog" }, { 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 (
); }