Movie Recommendation Tool

New Chat 447 lines import React, { useState } from “react”; import “./App.css”; const NAV_LINKS = [ { name: “Home”, id: “home” }, { name: “About Us”, id: “about” }, { name: “Admissions”, id: “admissions” }, { name: “Academics”, id: “academics” }, { name: “Contact”, id: “contact” }, ]; function Navbar({ currentSection, onNavClick }) { return (
Scroll to Top