import Image from "next/image"; const services = [ { number: "1", title: "Brand Discovery", description: "Placeholder description of this service. Explain the value you provide and the outcomes clients can expect. Keep it to two or three sentences.", image: "/service-1.jpg", }, { number: "2", title: "Web design & Dev", description: "Placeholder description of this service. Explain the value you provide and the outcomes clients can expect. Keep it to two or three sentences.", image: "/service-2.jpg", }, { number: "3", title: "Marketing", description: "Placeholder description of this service. Explain the value you provide and the outcomes clients can expect. Keep it to two or three sentences.", image: "/service-3.jpg", }, { number: "4", title: "Photography", description: "Placeholder description of this service. Explain the value you provide and the outcomes clients can expect. Keep it to two or three sentences.", image: "/service-4.jpg", }, ]; export function Services() { return (
{/* Label */} [ services ] {/* "[4] DELIVERABLES" heading */}
[4] Deliverables
{/* Service list */}
{services.map((service) => (
{/* Number + divider */} [ {service.number} ]
{/* Title + description + image */}

{service.title}

{service.description}

{service.title}
))}
); }