base design workspace

This commit is contained in:
hamid zarghami
2026-06-10 12:35:49 +03:30
parent 9d2401d951
commit 8d66437e7b
7 changed files with 259 additions and 211 deletions
+12
View File
@@ -0,0 +1,12 @@
import { type FC } from "react";
import HeaderWorkspace from "./HeaderWorkspace";
const Workspace: FC = () => {
return (
<div className="bg-[#01347A] h-full rounded-[32px] overflow-hidden">
<HeaderWorkspace />
</div>
);
};
export default Workspace;