import { NavLink, Outlet } from 'react-router-dom'; import { LayoutDashboard, List, Calendar, CalendarDays, DollarSign, Star, CreditCard } from 'lucide-react'; const navItems = [ { to: '/landlord', icon: LayoutDashboard, label: 'Dashboard', end: true }, { to: '/landlord/listings', icon: List, label: 'My Rentals' }, { to: '/landlord/bookings', icon: Calendar, label: 'Bookings' }, { to: '/landlord/calendar', icon: CalendarDays, label: 'Calendar' }, { to: '/landlord/payouts', icon: DollarSign, label: 'Payouts' }, { to: '/landlord/reviews', icon: Star, label: 'Reviews' }, { to: '/landlord/subscription', icon: CreditCard, label: 'Subscription' }, ]; export function LandlordLayout() { return (