import React from 'react'; import { Link, useLocation } from 'react-router-dom'; import { Languages } from 'lucide-react'; const Header = () => { const location = useLocation(); const isActive = (path) => { return location.pathname === path ? 'active' : ''; }; return (

Ad Reflections

); }; export default Header;