Skip to content

Commit

Permalink
vinvoor: format
Browse files Browse the repository at this point in the history
  • Loading branch information
Topvennie committed Oct 27, 2024
1 parent 48810d1 commit 797328a
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions vinvoor/src/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,44 +7,44 @@ export const Footer = () => {
const { data: version } = useVersion();

return (
<Box
<Box
sx={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
}}
>
<TypographyG>v {version?.version ?? ""}</TypographyG>
<TypographyG
sx={{
height: "100%",
display: "flex",
justifyContent: "space-between",
alignItems: "center",
justifyContent: "center",
}}
>
<TypographyG>v {version?.version ?? ""}</TypographyG>
<TypographyG
sx={{
height: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
Made with ❤️ by
<Link href="http://zeus.gent">
<Icon
sx={{
pl: "4px",
height: "40px",
display: "flex",
alignItems: "center",
width: "60px",
}}
>
<img
src={ZeusIcon}
alt="Zeus Icon"
style={{ height: "auto", width: "40px" }}
/>
</Icon>
</Link>
</TypographyG>
<Link href="https://github.com/ZeusWPI/ZeSS" textAlign="end">
© 2024
Made with ❤️ by
<Link href="http://zeus.gent">
<Icon
sx={{
pl: "4px",
height: "40px",
display: "flex",
alignItems: "center",
width: "60px",
}}
>
<img
src={ZeusIcon}
alt="Zeus Icon"
style={{ height: "auto", width: "40px" }}
/>
</Icon>
</Link>
</Box>
</TypographyG>
<Link href="https://github.com/ZeusWPI/ZeSS" textAlign="end">
© 2024
</Link>
</Box>
);
};

0 comments on commit 797328a

Please sign in to comment.