import React, { ReactNode } from 'react'; interface SectionProps { variant?: 'default' | 'dark' | 'light'; children: ReactNode; className?: string; id?: string; } export default function Section({ variant = 'default', children, className = '', id }: SectionProps) { const variantStyles = { default: 'bg-deep-graphite', dark: 'bg-iron-gray', light: 'bg-charcoal-outline' }; return (
{children}
); }