// @mui material components import Link from "@mui/material/Link" import Icon from "@mui/material/Icon" // 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" // Declaring props types for Footer interface Props { company?: { href: string name: string } links?: { href: string name: string }[] [key: string]: any } function FooterBlank({ company, links }: Props): JSX.Element { return (
) } function Footer({ company, links }: Props): JSX.Element { const { href, name } = company const { size } = typography const renderLinks = () => links.map((link) => (