basic structure folder and style

This commit is contained in:
Ehsan
2024-05-14 19:54:46 +03:30
parent 78ba0a6478
commit 4d71481738
333 changed files with 9853 additions and 149 deletions
+3 -5
View File
@@ -1,8 +1,6 @@
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
@@ -10,8 +8,8 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<html lang="fa" dir='rtl'>
<body className='bg-[#F5F5F5]'>{children}</body>
</html>
);
}
};