import { Card, CardContent } from "@/components/ui/card" import Image from "next/image" const services = [ { title: "Vending Machines", items: ["Sales", "Machines We Use", "Custom Solutions", "Latest Technology"], image: "/images/vending-bay-2-scaled.webp", }, { title: "Services", items: ["Vending Machine Moves", "Repairs & Maintenance", "Restocking", "24/7 Support"], image: "/vending-machine-repair-service.jpg", }, { title: "Product Options", items: ["Coca-Cola Products", "Pepsi Products", "Healthy Snacks", "Energy Drinks"], image: "/variety-of-drinks-and-snacks.jpg", }, ] export function ServicesSection() { return (

Our Services & Products

From traditional vending machines to modern cashless solutions, we offer everything you need to keep your team refreshed and productive.

{services.map((service, index) => (
{service.title}

{service.title}

    {service.items.map((item, itemIndex) => (
  • {item}
  • ))}
))}
) }