Mitchell Magro ad85a18225 s
2025-06-18 18:24:37 +02:00

18 lines
401 B
TypeScript

import ThemeRegistry from '@/config/ThemeRegistry';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Your App',
description: 'Generated by Next.js',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>
<ThemeRegistry>{children}</ThemeRegistry>
</body>
</html>
);
}