basic style & add mui and aos & banner style

This commit is contained in:
Ehsan
2024-05-16 03:44:17 +03:30
parent 4d71481738
commit ae1c7dd70c
11 changed files with 270 additions and 71 deletions
+4 -2
View File
@@ -1,5 +1,5 @@
import { Inter } from "next/font/google";
import "./globals.css";
import ThemeRegistry from './component/ThemeRegistry';
export const metadata = {
title: "Create Next App",
@@ -9,7 +9,9 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="fa" dir='rtl'>
<body className='bg-[#F5F5F5]'>{children}</body>
<ThemeRegistry>
<body className='bg-[#F5F5F5]'>{children}</body>
</ThemeRegistry>
</html>
);
};