import React from "react"; import type { ServiceLink } from "../types"; export function ServiceLinks({ items }: { items: ServiceLink[] }) { return (
{items.map((s) => ( {s.icon && {s.title}} {s.title} ))}
); }