major changes in the layout and added most components

This commit is contained in:
sara-pervana
2023-11-21 23:46:32 +01:00
committed by Luis-Hebendanz
parent 73e2d06136
commit b3f7d56193
18 changed files with 304 additions and 32 deletions

View File

@@ -0,0 +1,17 @@
import SummaryDetails from "@/components/summary_card";
import { Client1SummaryDetails } from "@/mock/client_1";
export default function Client1() {
return (
<div className="m-10">
<SummaryDetails
hasAttachDetach
hasRefreshButton
entity={{
name: "Client 1",
details: Client1SummaryDetails,
}}
/>
</div>
);
}