From 547031531b2dc9435dbc8aea5c2c70a2538f9f8d Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 29 Mar 2026 01:33:01 -0700 Subject: [PATCH] feat(settings): add dark/light theme toggle to Settings page --- web/src/app/(app)/settings/page.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/web/src/app/(app)/settings/page.tsx b/web/src/app/(app)/settings/page.tsx index 6759972..5233bf2 100644 --- a/web/src/app/(app)/settings/page.tsx +++ b/web/src/app/(app)/settings/page.tsx @@ -1,12 +1,33 @@ +"use client"; + +import { useTheme } from "@/lib/use-theme"; import { AppShell } from "@/components/AppShell"; export default function SettingsPage() { + const { theme, toggle } = useTheme(); + return ( Auth fallback active} > +
+
+
+ Appearance +
Switch between dark and light mode
+
+ +
+
+
Authentication