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
+15
View File
@@ -0,0 +1,15 @@
import AmountOfIncome from "./amountOfIncome";
import Cards from "./Cards";
import List from "./list";
function DashboardPage({ data }) {
return (
<div className="flex mt-[4px] flex-col gap-[20px] opacity-page">
<Cards data={data} />
<List data={data} />
<AmountOfIncome data={data} />
</div>
)
}
export default DashboardPage