diff --git a/interface/src/project/Help.tsx b/interface/src/project/Help.tsx
index d5b355823..49f6cc75a 100644
--- a/interface/src/project/Help.tsx
+++ b/interface/src/project/Help.tsx
@@ -1,28 +1,83 @@
-import { Tab } from '@mui/material';
-import { Navigate, Route, Routes } from 'react-router-dom';
-import HelpInformation from './HelpInformation';
+import CommentIcon from '@mui/icons-material/CommentTwoTone';
+import EastIcon from '@mui/icons-material/East';
+import GitHubIcon from '@mui/icons-material/GitHub';
+import MenuBookIcon from '@mui/icons-material/MenuBookTwoTone';
+import { Box, List, ListItem, ListItemAvatar, ListItemText, Link, Typography } from '@mui/material';
import type { FC } from 'react';
-
-import { RouterTabs, useRouterTab, useLayoutTitle } from 'components';
-
+import { SectionContent, useLayoutTitle } from 'components';
import { useI18nContext } from 'i18n/i18n-react';
const Help: FC = () => {
const { LL } = useI18nContext();
- const { routerTab } = useRouterTab();
-
useLayoutTitle(LL.HELP_OF(''));
+ const uploadURL = window.location.origin + '/system/upload';
+
return (
- <>
-
-
-
-
- } />
- } />
-
- >
+
+
+
+
+
+
+
+ {LL.HELP_INFORMATION_1()}
+
+
+
+ {LL.CLICK_HERE()}
+
+
+
+
+
+
+
+
+
+ {LL.HELP_INFORMATION_2()}
+
+
+
+ {LL.CLICK_HERE()}
+
+
+
+
+
+
+
+
+
+ {LL.HELP_INFORMATION_3()}
+
+
+ {LL.CLICK_HERE()}
+
+
+ ({LL.HELP_INFORMATION_4()}
+
+ {LL.UPLOAD()}
+
+ )
+
+
+
+
+
+
+ {LL.HELP_INFORMATION_5()}
+
+
+
+ {'github.com/emsesp/EMS-ESP32'}
+
+
+
+ @proddy @MichaelDvP
+
+
+
);
};
diff --git a/interface/src/project/HelpInformation.tsx b/interface/src/project/HelpInformation.tsx
deleted file mode 100644
index 9aae937f9..000000000
--- a/interface/src/project/HelpInformation.tsx
+++ /dev/null
@@ -1,85 +0,0 @@
-import CommentIcon from '@mui/icons-material/CommentTwoTone';
-import EastIcon from '@mui/icons-material/East';
-import GitHubIcon from '@mui/icons-material/GitHub';
-import MenuBookIcon from '@mui/icons-material/MenuBookTwoTone';
-import { Typography, Box, List, ListItem, ListItemText, Link, ListItemAvatar } from '@mui/material';
-import type { FC } from 'react';
-
-import { SectionContent } from 'components';
-
-import { useI18nContext } from 'i18n/i18n-react';
-
-const HelpInformation: FC = () => {
- const { LL } = useI18nContext();
-
- const uploadURL = window.location.origin + '/system/upload';
-
- return (
-
-
-
-
-
-
-
- {LL.HELP_INFORMATION_1()}
-
-
-
- {LL.CLICK_HERE()}
-
-
-
-
-
-
-
-
-
- {LL.HELP_INFORMATION_2()}
-
-
-
- {LL.CLICK_HERE()}
-
-
-
-
-
-
-
-
-
- {LL.HELP_INFORMATION_3()}
-
-
- {LL.CLICK_HERE()}
-
-
- ({LL.HELP_INFORMATION_4()}
-
- {LL.UPLOAD()}
-
- )
-
-
-
-
-
-
- {LL.HELP_INFORMATION_5()}
-
-
-
- {'github.com/emsesp/EMS-ESP32'}
-
-
-
- @proddy @MichaelDvP
-
-
-
- );
-};
-
-export default HelpInformation;