// components/shared/SpecificationsLayout.jsx import Link from 'next/link'; const SpecificationsLayout = ({ title = "Service Specifications", specificationItems = [], backgroundColor = "#e8f5f3", iconBackgroundColor = "bg-orange-100" }) => { return (
{/* Section Header */}

{title}

{/* Specifications Grid */}
{specificationItems.map((spec, index) => (
{/* Background Card */}
{/* Icon Circle */}
{`${spec.title}
{/* Title */}

{spec.title}

{/* Content */}
{spec.renderContent ? spec.renderContent() : (
{spec.content}
)}
))}
); }; export default SpecificationsLayout;