import { Card, CardContent } from "@/components/ui/card" import { Wrench, MonitorSmartphone, CreditCard, Sparkles } from "lucide-react" import Link from "next/link" const features = [ { icon: Sparkles, title: "Zero Cost Installation", description: "Get your vending machine installed completely free. No upfront costs, no hidden fees, no commitments.", link: "/about", linkText: "Learn More", }, { icon: Wrench, title: "Full Maintenance Support", description: "We handle all repairs, restocking, and maintenance. Your only job is to enjoy the convenience.", link: "/services/repairs", linkText: "View Repair Services", }, { icon: MonitorSmartphone, title: "24/7 Remote Monitoring", description: "Advanced monitoring systems ensure machines are always stocked and functioning properly.", link: "/services", linkText: "Our Services", }, { icon: CreditCard, title: "All Payment Options", description: "Accept cash, credit cards, mobile payments, and more. Modern cashless payment technology included.", link: "/contact-us", linkText: "Contact Us", }, ] 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}

{feature.linkText} →

))}
) }