mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-21 06:03:13 +02:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
|
|
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;
|