From b95302c4515163c04c25e1a67dd89a95354d62c3 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:05:08 -0800 Subject: [PATCH] feat(nav): Add Android App download link to sidebar --- frontend/src/components/layout/Sidebar.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/layout/Sidebar.tsx b/frontend/src/components/layout/Sidebar.tsx index 0b9af9c..466e5fb 100644 --- a/frontend/src/components/layout/Sidebar.tsx +++ b/frontend/src/components/layout/Sidebar.tsx @@ -1,7 +1,7 @@ import { useState } from 'react'; import { Link, useLocation } from 'react-router-dom'; import { motion } from 'framer-motion'; -import { ChevronRight, LayoutDashboard, Database, ClipboardList, ShieldCheck, Settings, Users, Box, ThermometerSun, Sprout } from 'lucide-react'; +import { ChevronRight, LayoutDashboard, Database, ClipboardList, ShieldCheck, Settings, Users, Box, ThermometerSun, Sprout, Smartphone } from 'lucide-react'; import { usePermissions } from '../../hooks/usePermissions'; import { getFilteredNavSections, type NavSection as NavSectionType, type NavItem } from '../../lib/navigation'; import { cn } from '../../lib/utils'; @@ -29,6 +29,18 @@ export function Sidebar({ onItemClick }: SidebarProps) { onItemClick={onItemClick} /> ))} + +
+ +
+ +
+ Download Android App +
+
); }