formatted

This commit is contained in:
Amirhossein Mahmoodi
2024-07-09 13:58:13 +03:30
parent 863bdaca95
commit bc73725138
82 changed files with 2206 additions and 3082 deletions

View File

@@ -1,17 +1,15 @@
import { TableSettingProvider } from "@/lib/contexts/tableSetting";
export const metadata = {
title: 'سامانه جامع راهداری',
}
title: "سامانه جامع راهداری",
};
export default function RootLayout({ children }) {
return (
<html lang="fa" dir={'rtl'}>
<body style={{ height: '100vh' }}>
<TableSettingProvider>
{children}
</TableSettingProvider>
<html lang="fa" dir={"rtl"}>
<body style={{ height: "100vh" }}>
<TableSettingProvider>{children}</TableSettingProvider>
</body>
</html>
)
);
}