import React from "react"; import { useNavigate } from "react-router-dom"; function Navbar() { const navigate = useNavigate(); const handleClick = () => { console.log("Go to home page"); navigate("/"); }; return (

{" "} VideoChad🗿{" "}

); } export default Navbar;