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