import { ReactNode } from 'react'; import { cn } from '../../../lib/utils'; interface SectionProps { children: ReactNode; className?: string; variant?: "default" | "dark" | "gradient" | "card"; size?: "sm" | "md" | "lg" | "xl"; } export const Section = ({ children, className, variant = "default", size: _size = "lg" }: SectionProps) => { // Reserved for future use // const paddingClasses = { // sm: "py-12", // md: "py-16", // lg: "py-24", // xl: "py-32" // }; const variantClasses = { default: "bg-background", dark: "bg-card relative", gradient: "gradient-hero relative overflow-hidden", card: "gradient-card relative" }; return (
{children}
); }; interface SectionHeaderProps { title: string; subtitle?: string; className?: string; } export const SectionHeader = ({ title, subtitle, className }: SectionHeaderProps) => (

{title}

{subtitle && (

{subtitle}

)}
);