init project

This commit is contained in:
AmirHossein Mahmoodi
2024-01-29 16:14:12 +03:30
commit 1df5a5edb4
15 changed files with 643 additions and 0 deletions

11
src/app/layout.js Normal file
View File

@@ -0,0 +1,11 @@
export const metadata = {
title: 'سامانه جامع راهداری',
}
export default function RootLayout({children}) {
return (<html lang="fa" dir={'rtl'}>
<body>
{children}
</body>
</html>)
}