initial commit

This commit is contained in:
Sone
2026-05-19 18:46:16 +02:00
parent a92d70ca74
commit 7e67fa8ea0
33 changed files with 6316 additions and 3952 deletions
+12 -16
View File
@@ -14,32 +14,28 @@ interface AccountDetailsProps {
isLoading: boolean;
}
const backgroundStyle = {
height: 6,
backgroundColor: "#C4BEBE",
};
export const AccountDetails = ({ user, isLoading }: AccountDetailsProps) => {
const isMobile = useAppSelector(selectIsMobile);
return (
<>
<PersonalActions user={user} isLoading={isLoading} />
<Divider
style={{ height: 6, backgroundColor: "#C4BEBE" }}
className={isMobile ? "my-1" : "my-4"}
/>
<Divider style={backgroundStyle} className={isMobile ? "my-1" : "my-4"} />
<PersonalInfo user={user} manager={user.manager} />
<Divider
style={{ height: 6, backgroundColor: "#C4BEBE" }}
className={isMobile ? "my-1" : "my-4"}
/>
<Divider style={backgroundStyle} className={isMobile ? "my-1" : "my-4"} />
<PersonalMetrics user={user} />
<Divider
style={{ height: 6, backgroundColor: "#C4BEBE" }}
className={isMobile ? "my-1" : "my-4"}
/>
<Divider style={backgroundStyle} className={isMobile ? "my-1" : "my-4"} />
<PersonalTodoList user={user} />
<Divider
style={{ height: 6, backgroundColor: "#C4BEBE" }}
className={isMobile ? "my-1" : "my-4"}
/>
<Divider style={backgroundStyle} className={isMobile ? "my-1" : "my-4"} />
<PersonalLoginList user={user} />
</>
);