wip: fix multipage scraping and add log page

This commit is contained in:
Jayden
2024-07-21 12:12:40 -05:00
parent 828a334057
commit 7eb5003edc
12 changed files with 209 additions and 32 deletions

View File

@@ -20,6 +20,7 @@ import {
import HomeIcon from "@mui/icons-material/Home";
import HttpIcon from "@mui/icons-material/Http";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
import TerminalIcon from "@mui/icons-material/Terminal";
import { useRouter } from "next/router";
import { useTheme } from "@mui/material/styles";
@@ -76,6 +77,15 @@ const NavDrawer: React.FC<NavDrawerProps> = ({ toggleTheme, isDarkMode }) => {
</ListItemButton>
</ListItem>
<Divider />
<ListItem>
<ListItemButton onClick={() => router.push("/logs")}>
<ListItemIcon>
<TerminalIcon />
</ListItemIcon>
<ListItemText primary="View App Logs" />
</ListItemButton>
</ListItem>
<Divider />
</List>
</div>
<Box