'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 } 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 provide comprehensive vending solutions tailored to your specific needs

100% FREE Service

No upfront costs, installation fees, or monthly charges

Regular Maintenance

We stock, service, and maintain all machines at no cost to you

Modern Technology

Cashless payment options and state-of-the-art equipment

Healthy Options

Wide variety of healthy snacks and beverages available

Local Support

Family-owned business with dedicated local customer service

Flexible Solutions

Customized vending solutions to fit your space and needs

{/* CTA Section */}

Ready to Get Started?

Contact us today to learn more about our free vending machine services and how we can help your business.

) }