import { Wrench, MonitorSmartphone, CreditCard, Sparkles } from "lucide-react" import Link from "next/link" import { PublicInset, PublicSurface } from "@/components/public-surface" const features = [ { icon: Sparkles, title: "Zero Cost Installation", description: "Get your vending machine installed completely free. No upfront costs, hidden fees, or awkward setup process.", link: "/about", linkText: "Learn more", }, { icon: Wrench, title: "Full Maintenance Support", description: "We handle repairs, restocking, and service so your location stays easy to manage.", link: "/services/repairs", linkText: "Repair services", }, { icon: MonitorSmartphone, title: "24/7 Remote Monitoring", description: "Advanced monitoring helps us keep machines stocked and working with fewer interruptions.", link: "/services", linkText: "Our services", }, { icon: CreditCard, title: "All Payment Options", description: "Cash, cards, and mobile payments are supported with modern payment hardware.", link: "/contact-us#contact-form", linkText: "Contact us", }, ] export function FeaturesSection() { return (

Why Rocky

Why businesses choose Rocky Mountain Vending

One visual system, one service standard, and a much more polished way to explain what makes our vending support easy to trust.

{features.map((feature) => (

{feature.title}

{feature.description}

{feature.linkText} →

))}
) }