import { FC } from "react"; import { Container, Grid, Box, Button } from "@mui/material"; import { useTranslate } from "react-polyglot"; import Image from "next/image"; import Link from "next/link"; import leafcutterLogo from "images/leafcutter-logo.png"; import footerLogo from "images/footer-logo.png"; import twitterLogo from "images/twitter-logo.png"; import gitlabLogo from "images/gitlab-logo.png"; import { useAppContext } from "./AppProvider"; export const Footer: FC = () => { const t = useTranslate(); const { colors: { white, leafcutterElectricBlue }, typography: { bodySmall }, } = useAppContext(); const smallLinkStyles: any = { ...bodySmall, color: white, textTransform: "none", }; return ( CDR logo {t("contactUs")} ©️ {t("copyright")} Gitlab logo Twitter logo ); };