const CARDS = [ { title: 'Clean REST APIs', detail: 'Spring Boot, OpenAPI, tested endpoints', icon: ( ), }, { title: 'Docker-Ready Deployments', detail: 'Containerized services, Docker Compose', icon: ( ), }, { title: 'CI/CD From Day One', detail: 'GitLab pipelines, automated builds and deploys', icon: ( ), }, { title: 'Production Infrastructure', detail: 'VPS, Nginx, SSL, monitoring', icon: ( ), }, ] export function DeliverSection() { return (

Deliverables

What I Deliver

{CARDS.map(({ title, detail, icon }) => (
{icon}
{title} {detail}
))}
) }