import type { ReactNode } from "react"; type Props = { title: string; children: ReactNode; }; export default function ServiceCard({ title, children }: Props) { return (

{title}

{children}

); }