diff --git a/frontend/src/pages/tournaments/[id]/dashboard.tsx b/frontend/src/pages/tournaments/[id]/dashboard.tsx index 7a9584be..5adf08c5 100644 --- a/frontend/src/pages/tournaments/[id]/dashboard.tsx +++ b/frontend/src/pages/tournaments/[id]/dashboard.tsx @@ -1,4 +1,5 @@ import { Grid, Image, Title } from '@mantine/core'; +import Head from 'next/head'; import React from 'react'; import { SWRResponse } from 'swr'; @@ -29,19 +30,24 @@ export default function Dashboard() { } return ( - - - {tournamentDataFull.name} - - - - - - + <> + + {tournamentDataFull.name} + + + + {tournamentDataFull.name} + + + + + + + ); }