import React from 'react' import { Box, Typography, useTheme } from '@mui/material' import Link from 'next/link' import { useTranslation } from 'react-i18next' export const footerHeight = 40 // keep multiple of 8 export default function Footer() { const theme = useTheme() const { t } = useTranslation() const styles = { footer: { position: 'fixed', bottom: 0, p: 0.5, borderTop: '1px solid', width: '100%', height: `${footerHeight}px`, display: 'flex', flexDirection: 'row', justifyContent: 'center', alignItems: 'center', backgroundColor: theme.palette.background.default, }, } return ( {t('imprint')} {t('privacy')} ) }