import type { Metadata } from 'next';

export const metadata: Metadata = {
  title: '{{NAME_PASCAL}}',
  description: '{{NAME_PASCAL}} application',
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>): React.ReactElement {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}
