v0.28.0
This commit is contained in:
parent
53670b3745
commit
8913436575
|
|
@ -7,6 +7,8 @@ import { APP_VERSION } from '@/lib/version';
|
|||
import { Button } from '@/components/ui/button';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
|
||||
const REPOSITORY_URL = 'https://dream.scheller.ltd/null/BillTracker';
|
||||
|
||||
function UpdateBadge({ status, loading }) {
|
||||
if (loading) {
|
||||
return (
|
||||
|
|
@ -139,6 +141,9 @@ export default function AboutPage() {
|
|||
<Button asChild>
|
||||
<Link to="/release-notes">Release Notes</Link>
|
||||
</Button>
|
||||
<Button asChild variant="outline">
|
||||
<a href={REPOSITORY_URL} target="_blank" rel="noopener noreferrer">Repository</a>
|
||||
</Button>
|
||||
<Button asChild variant="outline">
|
||||
<Link to="/privacy">Privacy</Link>
|
||||
</Button>
|
||||
|
|
|
|||
|
|
@ -149,17 +149,6 @@ export default function LoginPage() {
|
|||
</p>
|
||||
</div>
|
||||
|
||||
{oidcEnabled && isAuthentikProvider && (
|
||||
<div className="flex justify-center rounded-lg border border-border/70 bg-background/55 px-4 py-3">
|
||||
<img
|
||||
src="/img/auth.png"
|
||||
alt="authentik"
|
||||
className="h-16 w-16 object-contain"
|
||||
loading="eager"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{oidcEnabled && (
|
||||
<Button
|
||||
type="button"
|
||||
|
|
|
|||
Loading…
Reference in New Issue