18 lines
401 B
TypeScript
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>
|
|
);
|
|
}
|