change layout and router panel & design page dashboard and user account

This commit is contained in:
Ehsan
2024-09-10 21:38:07 +03:30
parent dffdab7139
commit 62b355e52f
44 changed files with 370 additions and 97 deletions
+13
View File
@@ -0,0 +1,13 @@
import Form from "./form";
import Head from "./Head";
function UserAccountPage({ data }) {
return (
<div className="opacity-page rounded-[8px] bg-[#FFF] shadow-[0px_1px_24.8px_0px_rgba(204,204,204,0.18)] px-[112px] py-[32px]">
<Head />
<Form />
</div>
)
}
export default UserAccountPage