mirror of
https://codeberg.org/MarkusThielker/finances.git
synced 2025-04-12 05:08:43 +00:00
commit
d04b83f707
2 changed files with 20 additions and 0 deletions
|
@ -8,6 +8,9 @@ const nextConfig = {
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
output: 'standalone',
|
output: 'standalone',
|
||||||
|
env: {
|
||||||
|
appVersion: process.env.npm_package_version,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default nextConfig;
|
export default nextConfig;
|
||||||
|
|
|
@ -90,6 +90,23 @@ export default async function AccountPage() {
|
||||||
<SignOutForm onSubmit={signOut}/>
|
<SignOutForm onSubmit={signOut}/>
|
||||||
</CardFooter>
|
</CardFooter>
|
||||||
</Card>
|
</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>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue