diff --git a/src/components/HomeViewComponents/FooterSection.js b/src/components/HomeViewComponents/FooterSection.js index efcf3ed4..fa0f5ddc 100644 --- a/src/components/HomeViewComponents/FooterSection.js +++ b/src/components/HomeViewComponents/FooterSection.js @@ -9,6 +9,7 @@ import { Typography, } from "@material-ui/core"; import React, { useState } from "react"; +import { Link } from "react-router-dom"; function Copyright() { return ( @@ -64,16 +65,20 @@ function FooterSection() { Explore - - Home - - + + + Home + + + Courses - + Special Offers - Events & Hackathons + + Events & Hackathons + @@ -81,16 +86,18 @@ function FooterSection() { About - + Privacy & Policy - + Terms & Conditions - + Support - Career + + Career + @@ -98,10 +105,12 @@ function FooterSection() { Community - + Refer a Friend{" "} - Scholarship + + Scholarship + @@ -173,6 +182,15 @@ const useStyles = makeStyles((theme) => ({ appleStore: { cursor: "pointer", }, + footerLinks: { + cursor: "pointer", + "&:hover": { + color: theme.palette.primary.main, + }, + }, + linkDecoration: { + textDecoration: "none", + }, darkModeSwitcher: { display: "flex", alignItems: "center",