import React from "react"; type SectionProps = { title: string; description: React.ReactNode; // allows both string & JSX (like ) className?: string; }; export default function Section({ title, description, className = "" }: SectionProps) { return (

{title}

{description}
); }