interface SectionProps {
  title: string;
  children: React.ReactNode;
}

export function Section({ title, children }: SectionProps) {
  return (
    <div className="space-y-4">
      <h3 className="text-xl font-extrabold text-primary">{title}</h3>
      <div>{children}</div>
    </div>
  );
}
