/** * AuroraLayout — Wraps any app page with the premium aurora blob background. * Usage: */ const AuroraLayout = ({ children, className = '' }) => (
{/* Fixed aurora background layer */}
{children}
); export default AuroraLayout;