Events member info should be horizontal

This commit is contained in:
Regalijan 2024-03-10 22:59:26 -04:00
parent 6340b02093
commit 32d0b07f2c
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -286,14 +286,16 @@ export default function () {
</Tr>
</Thead>
<Tbody>
<Tr>{data.etData?.name}</Tr>
<Tr>{data.etData?.points}</Tr>
<Tr>
<Link
href={`https://www.roblox.com/users/${data.etData?.roblox_id}/profile`}
>
{data.etData?.roblox_id}
</Link>
<Td>{data.etData?.name}</Td>
<Td>{data.etData?.points}</Td>
<Td>
<Link
href={`https://www.roblox.com/users/${data.etData?.roblox_id}`}
>
{data.etData?.roblox_id}
</Link>
</Td>
</Tr>
</Tbody>
</Table>