diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 697f02123..e93a4ff7f 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -8,6 +8,7 @@ import { Footer as FooterComponent, } from '@mantine/core'; import { BrandGithub } from 'tabler-icons-react'; +import { CURRENT_VERSION } from '../../../data/constants'; const useStyles = createStyles((theme) => ({ footer: { @@ -54,12 +55,27 @@ export function Footer({ links }: FooterCenteredProps) { )); - return ( - + return ( + - component="a" href="https://github.com/ajnart/homarr" size="lg"> - - + + component="a" href="https://github.com/ajnart/homarr" size="lg"> + + + + {CURRENT_VERSION} + + + Homarr - - {CURRENT_VERSION} - ); }