import type { Metadata } from 'next'; import './globals.css'; export const metadata: Metadata = { title: 'GSH Digital Services' }; type Props = Readonly<{ children: React.ReactNode; }> export default function RootLayout({ children }: Props) { return ( {children} ); }