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