"use client" import { ReactNode } from "react" import { Card, CardContent } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { GetFreeMachineCta } from "@/components/get-free-machine-cta" import Link from "next/link" import { CheckCircle2 } from "lucide-react" interface WhoWeServePageProps { title: string content: ReactNode } export function WhoWeServePage({ title, content }: WhoWeServePageProps) { return (
{/* Header */}

{title}

{/* Main Content */}
{content}
{/* Benefits Section */}

Why Choose Rocky Mountain Vending?

We match the machine mix, product selection, and service schedule to the way your location actually runs

Placement for Qualifying Locations

If your location qualifies, we can place and service machines without pushing daily management onto your staff

Regular Maintenance

We handle stocking, cleaning, and routine service so your team can stay focused on the work your location is there to do

Modern Technology

Cashless payment options and dependable equipment built for everyday use

Healthy Options

Product mixes can include traditional favorites, drinks, and healthier options

Local Service

Local service with responsive follow-up when a machine needs attention

Machine Options That Match Your Location

Machine types, product mixes, and service plans can be matched to your space, traffic, and audience

{/* CTA Section */}

Tell us about your location

Tell us about your location and we'll help you decide whether free placement, machine sales, or repair service makes the most sense.

) }