From e941880edbfb7f12311bb681ced2200ada680bf9 Mon Sep 17 00:00:00 2001 From: Erik Vroon Date: Sat, 21 Jan 2023 07:32:22 -0800 Subject: [PATCH] Change page title on dashboard (#97) --- .../src/pages/tournaments/[id]/dashboard.tsx | 34 +++++++++++-------- 1 file changed, 20 insertions(+), 14 deletions(-) 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} + + + + + + + ); }