interface NarrowSectionProps { children: React.ReactNode; className?: string; bgClassName?: string; } export const NarrowSection = ({ children, className = '', bgClassName = '' }: NarrowSectionProps) => { return (