'use client' import { Button } from "@/components/ui/button" import { VendingMachinesShowcase } from "@/components/vending-machines-showcase" import { CheckCircle2, CreditCard, MonitorSmartphone, Package, Wrench } from "lucide-react" import Link from "next/link" import { PublicInset, PublicPageHeader, PublicSurface } from "@/components/public-surface" import { GetFreeMachineCta } from "@/components/get-free-machine-cta" export function VendingMachinesPage() { return (

Why choose our machines?

{[ ["100% FREE service", "No upfront costs, installation fees, or monthly charges for qualifying businesses."], ["Modern technology", "Current equipment with reliable performance and updated features."], ["Cashless payments", "Integrated card readers and secure payment options for modern locations."], ["Full service and support", "Maintenance, restocking, and local follow-up are part of the experience."], ].map(([title, body]) => (

{title}

{body}

))}

Get Started

Ready to talk through the right machine setup?

We can help with free placement, sales questions, feature comparisons, and planning the best layout for your location.

Our services around the machines

{[ { icon: Wrench, title: "Repairs & Maintenance", body: "Expert service to keep machines running smoothly.", href: "/services/repairs", cta: "Repairs", }, { icon: MonitorSmartphone, title: "Moving Services", body: "Safe and efficient vending machine relocation when layouts change.", href: "/services/moving", cta: "Moving", }, { icon: CreditCard, title: "Parts & Manuals", body: "Replacement parts, manuals, and support resources for major brands.", href: "/manuals", cta: "Manuals", }, ].map((service) => (

{service.title}

{service.body}

))}

Machine features customers ask about most

{[ [Package, "Healthy Options", "Wide selection of nutritious snacks and beverages."], [CreditCard, "Cashless Payment", "Accept cards and mobile payments with modern hardware."], [Wrench, "Easy Maintenance", "Remote monitoring and quick service response when issues come up."], [MonitorSmartphone, "Smart Technology", "Track inventory and sales with better visibility."], ].map(([Icon, title, body]) => (

{title}

{body}

))}
) }