diff --git a/frontend/package.json b/frontend/package.json index ba917dcc9..ba320d797 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -9,6 +9,11 @@ "@dnd-kit/sortable": "^7.0.2", "@emotion/react": "^11.10.0", "@emotion/styled": "^11.10.0", + "@fortawesome/fontawesome-free": "^6.4.2", + "@fortawesome/fontawesome-svg-core": "^6.4.2", + "@fortawesome/free-brands-svg-icons": "^6.4.2", + "@fortawesome/free-solid-svg-icons": "^6.4.2", + "@fortawesome/react-fontawesome": "^0.2.0", "@mui/icons-material": "^5.11.16", "@mui/material": "^5.9.3", "@mui/x-data-grid": "^6.0.4", diff --git a/frontend/src/common/components/Footer.tsx b/frontend/src/common/components/Footer.tsx index c1a07eb61..10c7489df 100644 --- a/frontend/src/common/components/Footer.tsx +++ b/frontend/src/common/components/Footer.tsx @@ -2,6 +2,8 @@ import React from "react"; import { COLORS, URLs } from "../../constants"; import { LinkedIn, YouTube, Instagram, GitHub } from "@mui/icons-material"; import { ThemeProvider, createTheme } from "@mui/material/styles"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faReact } from "@fortawesome/free-brands-svg-icons"; const theme = createTheme({ components: { @@ -9,7 +11,7 @@ const theme = createTheme({ styleOverrides: { root: { fontSize: 40, - color: COLORS.dark_blue + color: COLORS.dark_blue, }, }, }, @@ -18,55 +20,38 @@ const theme = createTheme({ const Footer = () => { return ( -