import React from 'react'; import { Link, useLocation } from 'react-router-dom'; const Navbar: React.FC = () => { const location = useLocation(); const isHome = location.pathname === '/'; return ( ); }; export default Navbar;