File size: 555 Bytes
24e6f5b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /**
* AuroraLayout — Wraps any app page with the premium aurora blob background.
* Usage: <AuroraLayout><YourPageContent /></AuroraLayout>
*/
const AuroraLayout = ({ children, className = '' }) => (
<div className={`app-page ${className}`}>
{/* Fixed aurora background layer */}
<div className="app-page-bg">
<div className="grid-overlay" />
<div className="aurora-orb-bottom" />
<div className="aurora-orb-left" />
</div>
{children}
</div>
);
export default AuroraLayout;
|