From 56420adddf6fdf3bbc217dd6951b0ae7acda6c69 Mon Sep 17 00:00:00 2001 From: Klein Kristof Date: Wed, 6 Dec 2023 09:36:59 +0100 Subject: [PATCH] Added a link to the favicon --- webgui-new/src/pages/index.tsx | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/webgui-new/src/pages/index.tsx b/webgui-new/src/pages/index.tsx index 039a9ebfe..3c142ab52 100644 --- a/webgui-new/src/pages/index.tsx +++ b/webgui-new/src/pages/index.tsx @@ -1,4 +1,5 @@ import { Button } from '@mui/material'; +import Head from 'next/head'; import { useRouter } from 'next/router'; import React, { useContext } from 'react'; import { removeStore } from 'utils/store'; @@ -29,18 +30,24 @@ const Home = (): JSX.Element => { }; return ( - - - {t('index.title')} - {appCtx.workspaces.length - ? appCtx.workspaces.map((ws) => ( - - )) - : ''} - - + <> + + + + + + {t('index.title')} + {appCtx.workspaces.length + ? appCtx.workspaces.map((ws) => ( + + )) + : ''} + + + + ); };