'use client' import { Star } from "lucide-react" import Link from "next/link" import { PublicInset, PublicPageHeader, PublicSurface } from "@/components/public-surface" const reviews = [ { title: "Excellent Service!", body: "Rocky Mountain Vending has been fantastic for our office. The machines are always well-stocked and working perfectly.", author: "Sarah M., Salt Lake City", }, { title: "Professional and Reliable", body: "We've been working with Rocky Mountain Vending for over a year now. Their team is responsive and easy to work with.", author: "John D., Ogden", }, { title: "Great Selection", body: "Our employees love the healthy snack options and variety available. The free installation and maintenance service is a huge plus.", author: "Michelle R., Provo", }, { title: "Outstanding Customer Service", body: "Whenever we have an issue, the team responds quickly and resolves it the same day. It's rare to find this level of service today.", author: "David K., Sandy", }, { title: "Highly Recommended", body: "Best vending service we've ever used. Free machines, regular restocking, and great communication.", author: "Lisa T., West Valley City", }, { title: "Local Business We Trust", body: "Supporting a local, family-owned business feels good. They care about their customers and it shows in everything they do.", author: "Robert P., Bountiful", }, ] export function ReviewsPage() { return (
{reviews.map((review) => (
{Array.from({ length: 5 }).map((_, index) => ( ))}

{review.title}

{review.body}

— {review.author}

))}

Why customers keep choosing Rocky Mountain Vending

{[ ["100% free installation", "No upfront costs or hidden fees for qualifying businesses."], ["Regular restocking and maintenance", "We keep machines full, clean, and working with ongoing service included."], ["Wide product variety", "Healthy snacks, traditional favorites, beverages, and location-specific mixes."], ["Fast local support", "Utah-based service means quicker response times and a more personal experience."], ["Flexible service options", "From a single machine to multiple properties, we scale with your location."], ].map(([title, body]) => (

{title}

{body}

))}

Next Step

Want the same experience at your location?

If you're looking for free placement, service help, or machine sales, we can point you to the right intake form right away.

Free Placement

Start a request for free vending machine placement at your business.

Service or Sales

Reach out about repairs, moving, manuals, parts, or machine sales.

) }