Add footer

This commit is contained in:
Elias Schneider
2022-05-11 14:18:36 +02:00
parent 3cb7285e8f
commit c0e1caf543
2 changed files with 27 additions and 4 deletions

15
src/components/Footer.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { Anchor, Center, Footer as MFooter, Text } from "@mantine/core";
const Footer = () => {
return (
<MFooter height="auto" p={10}>
<Center>
<Text size="xs" color="dimmed">
Made with 🖤 by <Anchor size="xs" href="https://eliasschneider.com" target="_blank">Elias Schneider</Anchor>
</Text>
</Center>
</MFooter>
);
};
export default Footer;