import type { Metadata } from 'next'; import './globals.css'; import AuthGate from '@/components/AuthGate'; export const metadata: Metadata = { title: 'JUNGGOMOA — 트레이딩 시스템', description: 'BTC/ETH Futures 자동매매 대시보드', }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }