Skip to content

Commit

Permalink
✨ Feat: stat page
Browse files Browse the repository at this point in the history
  • Loading branch information
ilp-sys committed Apr 1, 2024
1 parent 441eaa2 commit f0a9193
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions aeye/app/(nav)/stat/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default function Stat() {
return (
<div>stat page</div>
);
}
5 changes: 4 additions & 1 deletion aeye/app/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Navbar: React.FC = () => {
};

return (
<div style={{marginBottom: '30px'}}>
<div style={{ marginBottom: '30px' }}>
<AppBar position="static" style={{ backgroundColor: '#65d586' }}>
<Toolbar variant="dense">
{small && (
Expand Down Expand Up @@ -98,6 +98,9 @@ const Navbar: React.FC = () => {
<Button color="inherit" onClick={() => router.push('/cams')}>
Cams
</Button>
<Button color="inherit" onClick={() => router.push('/stat')}>
Stat
</Button>
<Button color="inherit" onClick={() => router.push('/my')}>
My
</Button>
Expand Down

0 comments on commit f0a9193

Please sign in to comment.