This commit is contained in:
Amirhossein Mahmoodi
2024-07-10 16:43:39 +03:30
parent e6d1fbd1b4
commit 043c91ca9a
6 changed files with 81 additions and 52 deletions

View File

@@ -0,0 +1,10 @@
import InquiryPrivacyFencingPage from "@/components/dashboard/inquiryPrivacyFencing";
const Page = () => {
return (
<InquiryPrivacyFencingPage />
);
};
export default Page;

View File

@@ -1,9 +1,8 @@
import { Box, Stack } from "@mui/material";
import HeaderWithLogo from "@/components/layouts/dashboard/headerWithLogo";
import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar";
import "react-toastify/dist/ReactToastify.css";
import { Box, Stack } from "@mui/material";
const Template = ({ children }) => {
const Layout = ({ children }) => {
return (
<Stack>
<HeaderWithLogo />
@@ -12,6 +11,5 @@ const Template = ({ children }) => {
</Box>
</Stack>
);
};
export default Template;
}
export default Layout;

View File

@@ -1,5 +1,3 @@
"use client";
const Page = () => {
return (