(function() { // Import Komponen Navigasi // Pastikan Public_Nav.jsx sudah dimuat sebelum file ini di app-shell.php const PublicNav = window.PublicNav; const LayoutPublic = ({ children }) => { return ( // Container utama: Simulasi Mobile App Viewport (max-w-md) // Di layar besar, dia tetap di tengah seperti aplikasi HP
{/* 1. Background Ambient Glow (Efek Aurora) */}
{/* 2. Content Area */} {/* Menggunakan z-index relatif agar di atas background glow */}
{children}
{/* 3. Bottom Navigation */} {/* Wrapper untuk menu navigasi bawah */}
); }; // Expose ke Global window.LayoutPublic = LayoutPublic; })();