import React from 'react' import { motion } from 'framer-motion' interface DeepVoidBackgroundProps extends React.HTMLAttributes { children?: React.ReactNode className?: string disableAnimation?: boolean } export function DeepVoidBackground({ children, className = '', disableAnimation = false, ...props }: DeepVoidBackgroundProps) { return (
{/* BACKGROUND LAYERS */} {/* 1. Grain/Noise Texture */}
{/* 2. Grid System */}
{/* 3. Ambient Glow Spots */}
{/* 4. CRT/Scanline Overlay */}
{/* Content Layer */}
{children}
) }