better performance

This commit is contained in:
AmirHossein Mahmoodi
2025-04-20 16:12:05 +03:30
parent eabde3d212
commit 8e2017d291
36 changed files with 4 additions and 13 deletions

View File

@@ -1,3 +1,7 @@
export const metadata = {
title: "پیشخوان",
};
const Page = () => {
return <></>;
};

View File

@@ -1,13 +0,0 @@
import HeaderWithLogo from "@/components/layouts/dashboard/headerWithLogo";
import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar";
import { Stack } from "@mui/material";
const Layout = ({ children }) => {
return (
<Stack sx={{ width: "100%", height: "100%" }}>
<HeaderWithLogo />
<HeaderWithSidebar>{children}</HeaderWithSidebar>
</Stack>
);
};
export default Layout;