diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index 2fe587d..6cb8344 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -1,55 +1,89 @@ import React from 'react'; import { Outlet, Link, useLocation } from 'react-router-dom'; import { useAuth } from '../context/AuthContext'; +import ThemeToggle from './ThemeToggle'; export default function Layout() { const { user, logout } = useAuth(); const location = useLocation(); const navItems = [ - { label: 'Dashboard', path: '/' }, - { label: 'Rooms', path: '/rooms' }, - { label: 'Batches', path: '/batches' }, - { label: 'Timeclock', path: '/timeclock' }, + { label: 'Dashboard', path: '/', icon: '📊' }, + { label: 'Daily Walkthrough', path: '/walkthrough', icon: '✅' }, + { label: 'Rooms', path: '/rooms', icon: '🏠' }, + { label: 'Batches', path: '/batches', icon: '🌱' }, + { label: 'Timeclock', path: '/timeclock', icon: '⏰' }, ]; return ( -