import { Card, CardContent } from "@/components/ui/card" import { Wrench, MonitorSmartphone, CreditCard, Sparkles } from "lucide-react" const features = [ { icon: Sparkles, title: "Zero Cost Installation", description: "Get your vending machine installed completely free. No upfront costs, no hidden fees, no commitments.", }, { icon: Wrench, title: "Full Maintenance Support", description: "We handle all repairs, restocking, and maintenance. Your only job is to enjoy the convenience.", }, { icon: MonitorSmartphone, title: "24/7 Remote Monitoring", description: "Advanced monitoring systems ensure machines are always stocked and functioning properly.", }, { icon: CreditCard, title: "All Payment Options", description: "Accept cash, credit cards, mobile payments, and more. Modern cashless payment technology included.", }, ] export function FeaturesSection() { return (

Why Choose Rocky Mountain Vending

We make vending simple, reliable, and completely hassle-free for your business.

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
) }