import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; import { deliveryPrinciples } from "@/data/site-content"; /** * DeliveryPrinciplesSection — masonry grid of the commitments that keep * delivery predictable. * * Shared by: Home and Services. * * This slot held stock client testimonials in the original build. Tenext * does not publish named client quotes, so it presents how the company * works instead. If real, attributable testimonials become available, * this section is the place to reinstate them. */ export function DeliveryPrinciplesSection() { return (
{deliveryPrinciples.map((principle) => (
{principle.title}

{principle.description}

))}
); }