| 1 | import { WechatBrowserOverlay } from '@/components/common/WechatBrowserOverlay' |
| 2 | |
| 3 | export const metadata = { |
| 4 | title: 'AiToEarn', |
| 5 | description: 'AiToEarn', |
| 6 | } |
| 7 | |
| 8 | export default function RootLayout({ children }: { children: React.ReactNode }) { |
| 9 | return ( |
| 10 | <html lang="en"> |
| 11 | <body> |
| 12 | <WechatBrowserOverlay variant="standalone" /> |
| 13 | {children} |
| 14 | </body> |
| 15 | </html> |
| 16 | ) |
| 17 | } |
| 18 |