import { Link, NavLink, Outlet } from "react-router-dom"; import './home.css'; function Home() { const handleStyle = ({ isActive, isPending }) => isPending ? 'pending' : isActive ? 'active' : 'link'; return