diff --git a/components/Footer.tsx b/components/Footer.tsx index c26ae3f..2605bfe 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,88 +1,31 @@ import { observer } from 'mobx-react'; import { useContext } from 'react'; -import { Col, Container, Nav, Row } from 'react-bootstrap'; +import { Image } from 'react-bootstrap'; -import { ContactEmail, GitHubURL, WeChatURL } from '../models/configuration'; import { I18nContext } from '../models/Translation'; export const Footer = observer(() => { const { t } = useContext(I18nContext); + const currentYear = new Date().getFullYear(); return ( -