bury profile stats in Comments until we find a better place for them

This commit is contained in:
mantikoros 2022-08-31 23:20:20 -05:00
parent 2a17bcb8b2
commit 879d6fb2dd

View File

@ -253,7 +253,18 @@ export function UserPage(props: { user: User }) {
},
{
title: 'Comments',
content: <UserCommentsList user={user} />,
content: (
<Col>
<Row className={'mt-2 mb-4 flex-wrap items-center gap-6'}>
<FollowingButton user={user} />
<FollowersButton user={user} />
<ReferralsButton user={user} />
<GroupsButton user={user} />
<UserLikesButton user={user} />
</Row>
<UserCommentsList user={user} />
</Col>
),
},
{
title: 'Bets',
@ -264,20 +275,6 @@ export function UserPage(props: { user: User }) {
</>
),
},
{
title: 'Social',
content: (
<Row
className={'mt-2 flex-wrap items-center justify-center gap-6'}
>
<FollowingButton user={user} />
<FollowersButton user={user} />
<ReferralsButton user={user} />
<GroupsButton user={user} />
<UserLikesButton user={user} />
</Row>
),
},
]}
/>
</Col>