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: "Free Placement", description: "For qualifying locations, we can place the machines, stock them, and stay responsible for day-to-day service after install.", link: "/#how-it-works", linkText: "How placement works", }, { icon: Wrench, title: "Repairs and Services", description: "We handle repairs, restocking, and routine service so your team does not have to manage the machines.", link: "/services/repairs#request-service", linkText: "Repair services", }, { icon: MonitorSmartphone, title: "Machine Visibility", description: "Machine monitoring helps us catch stock and service issues sooner and reduce unnecessary downtime.", link: "/services", linkText: "Our services", }, { icon: CreditCard, title: "All Payment Options", description: "Machines can be set up for cash, cards, and mobile payments with modern payment hardware.", link: "/contact-us#contact-form", linkText: "Ask about payment options", }, ] export function FeaturesSection() { return (

Why Rocky

Why businesses choose Rocky Mountain Vending

Utah businesses choose Rocky Mountain Vending when they want a simpler vending setup, cleaner follow-through, and fewer machine headaches for their staff.

{features.map((feature) => (

{feature.title}

{feature.description}

{feature.linkText} →

))}
) }