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) => ( + + )) + : ''} + + + + ); };