feat(frontend): remove footer

This commit is contained in:
Elias Schneider
2022-10-18 09:31:13 +02:00
parent 239b18cdae
commit c52a4d5e3a
2 changed files with 4 additions and 29 deletions

View File

@@ -1,18 +0,0 @@
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;