feat: add Footer component and integrate it into App and LoginPage

This commit is contained in:
2025-10-26 14:37:41 +01:00
parent c502601a2f
commit d3f7a7570f
3 changed files with 40 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
import { Box } from "@chakra-ui/react";
export const Footer = () => {
return (
<Box
as="footer"
py={4}
textAlign="center"
position="fixed"
bottom="0"
left="0"
right="0"
>
Made with by Theis Gaedigk - Year 2019 at MCS-Bochum
<br />
v2.0
</Box>
);
};