// @mui material components import Container from "@mui/material/Container" import Link from "@mui/material/Link" import Icon from "@mui/material/Icon" import { Theme } from "@mui/material/styles" // ThreeD Garden components import MDBox from "~/components/mui/MDBox" import MDTypography from "~/components/mui/MDTypography" // ThreeD Garden Base Styles import typography from "~/themes/theme-light/base/typography" function Footer({ light }: { light?: boolean }): JSX.Element { const { size } = typography return ( © {new Date().getFullYear()} favorite  Company Juice  ({ display: "flex", flexWrap: "wrap", alignItems: "center", justifyContent: "center", listStyle: "none", mt: 3, mb: 0, p: 0, [breakpoints.up("lg")]: { mt: 0, }, })}> Company Juice About Us Blog License ) } // Declaring default props for Footer Footer.defaultProps = { light: false, } export default Footer