import { useEffect } from "react";
import { Mail, MapPin } from "lucide-react";
import { NavLink, Outlet, useLocation, useNavigate } from "react-router-dom";
import logoImage from "./assets/images/logo.png";
import { products } from "./utils/utils";
const Navbar = () => {
const navigate = useNavigate();
return (
);
};
const Footer = () => {
const navigate = useNavigate();
return (
);
};
export default function App() {
const location = useLocation();
useEffect(() => {
window.scrollTo(0, 0);
}, [location.pathname]);
return (
);
}