feat(ui): add review menu to mobile nav and update card styling

- mobile-nav: add 'review' path to NAV_ITEMS array to ensure the menu is accessible on mobile screens.
- scan-page: update background color and border radius of the guidelines card in the right sidebar.
This commit is contained in:
seriouselly
2026-06-07 18:22:14 +07:00
parent 68258074a6
commit 9a05c380cc
2 changed files with 5 additions and 4 deletions
@@ -12,6 +12,7 @@ const NAV_ITEMS = [
{ path: "/scan", label: "Scan Tanaman" },
{ path: "/diagnoses", label: "Diagnosa" },
{ path: "/catalog", label: "Pustaka", altPath: "/library" },
{ path: "/expert/reviews", label: "Review" },
];
export function MobileNav({ open, onClose }: Props) {