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} /> ))} + +
); }