import type { Metadata } from 'next'; import StyledComponentsRegistry from '@/lib/registry'; import GlobalStyle from '@/styles/GlobalStyle'; import LayoutShell from '@/components/common/LayoutShell'; export const metadata: Metadata = { title: '하나랑 대시보드', description: '4자매 멀티에이전트 파이프라인 관제 대시보드', }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (