From 565a30e246a07b41a81a62f68a94ab8e669a5594 Mon Sep 17 00:00:00 2001 From: v0 Date: Wed, 4 Feb 2026 16:08:51 +0000 Subject: [PATCH 1/8] feat: add GitHub link button in top-right corner Use lucide-react Github icon and open repo page in new tab Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com> --- app/page.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/page.tsx b/app/page.tsx index b84b913..7f1e990 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -27,6 +27,7 @@ import { Monitor, Languages, Check, + Github, } from "lucide-react" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" @@ -657,6 +658,22 @@ export default function TwoFactorAuth() {
+ + - + {t.addNewToken} {t.addNewTokenDesc} From 52dec921f5ed66b158edf03b37e52d33516a23e7 Mon Sep 17 00:00:00 2001 From: v0 Date: Wed, 4 Feb 2026 16:43:29 +0000 Subject: [PATCH 7/8] feat: adjust settings layout in advanced config popup Display "Algorithm" and "Captcha Length" side by side for compact layout. Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com> --- app/page.tsx | 72 +++++++++++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 35 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 5d4c769..f3ead0c 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -798,7 +798,7 @@ export default function TwoFactorAuth() { {t.addToken} - + {t.addNewToken} {t.addNewTokenDesc} @@ -864,40 +864,42 @@ export default function TwoFactorAuth() { {showAdvanced && (
-
- - -
-
- - +
+
+ + +
+
+ + +
From bf66b5bed1bb9672152bdbc242633a185a72e752 Mon Sep 17 00:00:00 2001 From: v0 Date: Wed, 4 Feb 2026 16:47:51 +0000 Subject: [PATCH 8/8] fix: improve contrast for destructive alert in light mode Use `text-white` and adjust background colors for better readability. Co-authored-by: Simon <85533298+handsomezhuzhu@users.noreply.github.com> --- components/ui/toast.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ui/toast.tsx b/components/ui/toast.tsx index 2dc6668..926acbc 100644 --- a/components/ui/toast.tsx +++ b/components/ui/toast.tsx @@ -31,7 +31,7 @@ const toastVariants = cva( variant: { default: 'border bg-background text-foreground', destructive: - 'destructive group border-destructive bg-destructive text-destructive-foreground', + 'destructive group border-red-500 bg-red-500 text-white dark:border-red-600 dark:bg-red-600', }, }, defaultVariants: {