import React from 'react'; import { Link, useLocation } from 'react-router-dom'; import { Film, Heart, Users, Settings } from 'lucide-react'; import { useAppContext } from '../store/AppContext'; export const Navbar: React.FC = () => { const location = useLocation(); const { user, matches } = useAppContext(); const navItems = [ { path: '/', icon: Users, label: 'Partner' }, { path: '/swipe', icon: Film, label: 'Discover' }, { path: '/matches', icon: Heart, label: 'Matches', badge: matches.length }, { path: '/settings', icon: Settings, label: 'Settings', requiresAuth: true }, ]; return ( ); };