Skip to content

Commit

Permalink
fix: add version in appbar
Browse files Browse the repository at this point in the history
  • Loading branch information
JanStevens committed Aug 22, 2024
1 parent bc5be53 commit 5a41cae
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/@navigation/MainNavigation.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import { Link } from 'components/@common/link';

import Navigation from './Navigation';

const MainNavigation = () => (
<Navigation>
<Navigation.Logo title="Monster Mirror" />
<Link
color="fg.subtle"
href={`https://github.com/JanStevens/monster-mirror/releases/tag/${process.env.NEXT_PUBLIC_APP_VERSION}`}
>
v{process.env.NEXT_PUBLIC_APP_VERSION}
</Link>
</Navigation>
);

Expand Down

0 comments on commit 5a41cae

Please sign in to comment.