"use client" import { ReactNode } from "react" import { CheckCircle2 } from "lucide-react" import { DropdownPageShell } from "@/components/dropdown-page-shell" import { PublicInset } from "@/components/public-surface" interface WhoWeServePageProps { title: string content: ReactNode description?: string } const reasons = [ { title: "Placement for Qualifying Locations", body: "If your location qualifies, we can place and service machines without pushing daily management onto your staff.", }, { title: "Regular Maintenance", body: "We handle stocking, cleaning, and routine service so your team can stay focused on the work your location is there to do.", }, { title: "Modern Technology", body: "Cashless payment options and dependable equipment built for everyday use.", }, { title: "Healthy Options", body: "Product mixes can include traditional favorites, drinks, and healthier options.", }, { title: "Local Service", body: "Local service with responsive follow-up when a machine needs attention.", }, { title: "Machine Options That Match Your Location", body: "Machine types, product mixes, and service plans can be matched to your space, traffic, and audience.", }, ] export function WhoWeServePage({ title, content, description, }: WhoWeServePageProps) { return ( {content} } contentClassName="prose prose-lg max-w-none prose-headings:text-foreground prose-p:text-muted-foreground prose-a:text-foreground prose-a:underline prose-a:decoration-primary/35 prose-a:underline-offset-4 hover:prose-a:decoration-primary prose-strong:text-foreground" sections={

Why Rocky

What locations usually value most after we install

We match the machine mix, product selection, and service cadence to the pace of the location instead of forcing a generic route.

{reasons.map((reason) => (

{reason.title}

{reason.body}

))}
} cta={{ eyebrow: "Next Step", title: "Tell us about your location", description: "Tell us about your breakroom, customer area, or team traffic and we’ll help you decide whether free placement, machine sales, or service support makes the most sense.", actions: [ { label: "Talk to Our Team", href: "/contact-us#contact-form" }, { label: "See If You Qualify", href: "/#request-machine", variant: "outline", }, ], }} /> ) }