feat(WEB-250): overview hero final ui

This commit is contained in:
Simon Emanuelsson
2024-05-24 10:13:24 +02:00
parent f884383c3c
commit 16b817f469
164 changed files with 6262 additions and 990 deletions

View File

@@ -1,15 +1,18 @@
import Progress from "./Progress"
import TotalPoints from "./TotalPoints"
import Divider from "@/components/TempDesignSystem/Divider"
import NextLevel from "./NextLevel"
import Points from "./Points"
import styles from "./stats.module.css"
import type { StatsProps } from "@/types/components/myPages/myPage/stats"
import type { UserProps } from "@/types/components/myPages/user"
export default function Stats({ user }: StatsProps) {
export default function Stats({ user }: UserProps) {
return (
<section className={styles.stats}>
<TotalPoints user={user} />
<Progress />
<Points user={user} />
<Divider variant="default" />
<NextLevel user={user} />
</section>
)
}