N-FIN-23: show app version on account page
This commit is contained in:
parent
6a94e4ecd8
commit
c64f28a632
2 changed files with 20 additions and 0 deletions
|
@ -8,6 +8,9 @@ const nextConfig = {
|
|||
return config;
|
||||
},
|
||||
output: 'standalone',
|
||||
env: {
|
||||
appVersion: process.env.npm_package_version,
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
|
@ -90,6 +90,23 @@ export default async function AccountPage() {
|
|||
<SignOutForm onSubmit={signOut}/>
|
||||
</CardFooter>
|
||||
</Card>
|
||||
<div className="flex w-full items-center justify-between max-w-md mt-2 text-neutral-600">
|
||||
<p>Version {process.env.appVersion}</p>
|
||||
<div className="flex items-center justify-between space-x-4">
|
||||
<a
|
||||
target="_blank"
|
||||
className="hover:text-neutral-500 duration-100"
|
||||
href="https://github.com/MarkusThielker/next-finances">
|
||||
Source Code
|
||||
</a>
|
||||
<a
|
||||
target="_blank"
|
||||
className="hover:text-neutral-500 duration-100"
|
||||
href="https://github.com/MarkusThielker/next-finances/releases">
|
||||
Changelog
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue