Files
gsh-website/app/layout.tsx
2025-12-19 18:25:38 +01:00

20 lines
328 B
TypeScript

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 (
<html lang="en">
<body>
{children}
</body>
</html>
);
}