This commit is contained in:
2024-07-29 19:47:40 +02:00
parent e20206d4a5
commit 5ce2215e44
66 changed files with 174 additions and 20 deletions
+9 -1
View File
@@ -1,7 +1,10 @@
import { Box, Divider, Grid, Typography } from '@mui/material';
import { Box, Divider, Grid, Link, Typography } from '@mui/material';
import { FC } from 'react';
import { useTranslation } from 'react-i18next';
const Footer: FC = () => {
const { t } = useTranslation();
return (
<Box
sx={{
@@ -16,6 +19,11 @@ const Footer: FC = () => {
<Grid item xs={12}>
<Divider />
</Grid>
<Grid item xs={12} sx={{ display: 'flex', justifyContent: 'center' }}>
<Link href="https://www.flaticon.com/free-icons/guests-book" title="guests book icons">
<Typography variant="caption">{t('Favicon')}</Typography>
</Link>
</Grid>
<Grid item xs={12} sx={{ display: 'flex', justifyContent: 'center' }}>
<Typography variant="caption">© 2024 Kilian Kurt Hofmann</Typography>
</Grid>