import React from 'react' interface DeepVoidBackgroundProps extends React.HTMLAttributes { children?: React.ReactNode className?: string disableAnimation?: boolean } export function DeepVoidBackground({ children, className = '', disableAnimation = false, ...props }: DeepVoidBackgroundProps) { return (
{/* Background layers: neutralized to a plain cream surface for the light theme */} {disableAnimation ? ( <>
) : ( <> {/* Faint grid system on cream */}
)} {/* Content Layer */}
{children}
) }