"use client" import { Button } from "@/components/ui/button" import { VendingMachinesShowcase } from "@/components/vending-machines-showcase" import { CheckCircle2, CreditCard, type LucideIcon, 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" import { Breadcrumbs } from "@/components/breadcrumbs" export function VendingMachinesPage() { const featureCards: Array<[LucideIcon, string, string]> = [ [ 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.", ], ] return (

Why businesses choose our vending setup

{[ [ "Machine planning by location", "We look at traffic, audience, and space before recommending a snack, beverage, or combo setup.", ], [ "Modern equipment", "We use dependable machines with updated payment hardware and features that work well in busy locations.", ], [ "Cashless-ready checkout", "Integrated card readers and mobile payment options make the machines easier for customers to use.", ], [ "Ongoing local service", "After installation, we stay responsible for restocking, routine service, and follow-up when machines need attention.", ], ].map(([title, body]) => (

{title}

{body}

))}

Next Step

Need help choosing the right machine setup?

We can help you compare free placement and direct purchase options, narrow down the right machine type, and choose a layout that fits your space and traffic.

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 machine resources for major brands.", href: "/manuals", cta: "Manuals", }, ].map((service) => (

{service.title}

{service.body}

))}

Machine features customers ask about most

{featureCards.map(([Icon, title, body]) => (

{title}

{body}

))}
) }