17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
import "./globals.css";
|
|
import ThemeRegistry from './component/ThemeRegistry';
|
|
|
|
export const metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="fa" dir='rtl'>
|
|
<ThemeRegistry>
|
|
<body className='bg-[#FAFAFA]'>{children}</body>
|
|
</ThemeRegistry>
|
|
</html>
|
|
);
|
|
}; |