'use client' import { ReactNode } from "react" import { Card, CardContent } from "@/components/ui/card" import { Button } from "@/components/ui/button" import Link from "next/link" import { CheckCircle2, Wrench, Clock, Phone, Shield } from "lucide-react" interface RepairsPageProps { title: string content: ReactNode } export function RepairsPage({ title, content }: RepairsPageProps) { return ( <> {/* Hero Header */}

{typeof title === 'string' ? title.replace(/<[^>]*>/g, '') : title}

Rocky Mountain Vending delivers expert vending machine repair and maintenance services to keep your business thriving. From resolving jammed coin slots and refrigeration issues to fixing non-dispensing machines, our skilled technicians ensure reliable performance.

{/* Main Content */}
{content}
{/* Services Cards Section */}

Our Repair Services

Comprehensive repair and maintenance services to keep your machines running smoothly

Diagnostics & Fixes

Diagnosing and fixing vending machine errors quickly and efficiently

Payment Systems

Bill and coin mechanism repairs, card reader troubleshooting and setup

Refrigeration

Refrigeration system maintenance and repair to keep products cold

Software & Setup

Software updates, programming, machine calibration and inventory setup

Preventative Maintenance

Regular maintenance services to prevent issues before they occur

Card Reader Upgrades

Credit card reader upgrade and installation for modern payment options

{/* Why Choose Us Section */}

Why Choose Rocky Mountain Vending?

Local experts with over 10 years of experience serving Salt Lake City and surrounding areas

Local Experts

Serving Salt Lake City for over 10 years with deep knowledge of local needs

Fast Response Times

Quick service to minimize downtime and get your machines back in operation

All Major Brands

Experienced technicians familiar with all major vending machine brands

Affordable Service Plans

Service plans tailored to your needs with competitive pricing

Preventative Maintenance

Regular maintenance services to keep your machines running smoothly

Expert Problem Solving

We've often come in and fixed problems others couldn't fix

{/* CTA Section */}

Ready to Get Your Machine Fixed?

Contact us today for fast, professional solutions. Our expert technicians are ready to help you get your vending machine back up and running.

) }