Skip to content

Commit

Permalink
fix navbar naming
Browse files Browse the repository at this point in the history
  • Loading branch information
tomheaton committed Jun 19, 2024
1 parent 9c34bfe commit 3926ff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Navbar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { FaBars } from "react-icons/fa";
import { IconContext } from "react-icons/lib";
import { animateScroll as scroll } from "react-scroll";

export default function NavBar({ toggle }) {
export default function Navbar({ toggle }) {
const [scrollNav, setScrollNav] = useState(false);

useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import HeroSection from "@/components/HeroSection";
import InstructorsSection from "@/components/Instructors";
import MediaSection from "@/components/Media";
import MoreSection from "@/components/More";
import Navbar from "@/components/NavBar";
import Navbar from "@/components/Navbar";
import NotebookSection from "@/components/Notebooks";
import Sidebar from "@/components/Sidebar";
import { useState } from "react";
Expand Down

0 comments on commit 3926ff4

Please sign in to comment.