diff --git a/coverage/Navbar.tsx.html b/coverage/Navbar.tsx.html index a6c2466..c69a0dd 100644 --- a/coverage/Navbar.tsx.html +++ b/coverage/Navbar.tsx.html @@ -400,7 +400,7 @@

All files Navbar.tsx

</li> <li> <NavbarItem - locationTo="/search/academics" + locationTo="/home/academics" onClick={closeMobileMenu} title="Home" image={<IoHomeOutline />} diff --git a/coverage/SecondNav.tsx.html b/coverage/SecondNav.tsx.html index a6607a9..5563530 100644 --- a/coverage/SecondNav.tsx.html +++ b/coverage/SecondNav.tsx.html @@ -180,13 +180,13 @@

All files SecondNav.tsx

<div className="shadow-md py-0"> <ul className="p-2 mx-auto list-none flex items-center justify-around w-3/5 h-full"> <li> - <SecondNavItem locationTo="/search/academics" title="Academics" /> + <SecondNavItem locationTo="/home/academics" title="Academics" /> </li> <li> - <SecondNavItem locationTo="/search/clubs" title="Clubs" /> + <SecondNavItem locationTo="/home/clubs" title="Clubs" /> </li> <li> - <SecondNavItem locationTo="/search/career" title="Career" /> + <SecondNavItem locationTo="/home/career" title="Career" /> </li> </ul> </div> diff --git a/src/components/SavedSearches.tsx b/src/components/SavedSearches.tsx index e117a02..e3853b7 100644 --- a/src/components/SavedSearches.tsx +++ b/src/components/SavedSearches.tsx @@ -13,7 +13,7 @@ const SavedSearchBtn: React.FC = ({ content, clickStay, te return ( diff --git a/src/components/Search.tsx b/src/components/Search.tsx index 0de7115..d6ef1b7 100644 --- a/src/components/Search.tsx +++ b/src/components/Search.tsx @@ -245,8 +245,8 @@ const Search: React.FC = ({ page }) => { {/*
{actionsMenuComp}
*/}
{/* */} -
diff --git a/src/components/icons/CMUCalLogo.png b/src/components/icons/CMUCalLogo.png new file mode 100644 index 0000000..e52e581 Binary files /dev/null and b/src/components/icons/CMUCalLogo.png differ diff --git a/src/pages/Welcome.tsx b/src/pages/Welcome.tsx index 6ffbea8..b94ce8a 100644 --- a/src/pages/Welcome.tsx +++ b/src/pages/Welcome.tsx @@ -5,7 +5,7 @@ import { useNavigate } from "react-router-dom"; function GoogleSigninButton() { let navigate = useNavigate(); const routeChange = () =>{ - let path = `/search/academics`; + let path = `/home/academics`; navigate(path); }