| import type { ReactNode } from 'react'; | |
| type SectionCardProps = { | |
| children: ReactNode; | |
| className?: string; | |
| }; | |
| export function SectionCard({ children, className = '' }: SectionCardProps) { | |
| return <section className={`studio-card ${className}`.trim()}>{children}</section>; | |
| } | |