'use client' import React from 'react' import { Layout, Flex } from 'antd' const AppLayout = ({ children }: { children: React.ReactNode }) => { return ( {/* Background Image Layer */}
{/* Foreground Content */} {children} ); } export default AppLayout;