From e358394e0dc31599e8ec73551c7babaa0ac123b8 Mon Sep 17 00:00:00 2001 From: sakshi-s29 Date: Wed, 27 May 2026 21:12:34 +0530 Subject: [PATCH] Improved homepage heading and auth UI --- CommDesk | 1 + src/Component/ui/Input.tsx | 8 ++++---- src/features/Auth/v1/Pages/LoginPage.tsx | 4 ++-- src/features/Auth/v1/Pages/SignUpPage.tsx | 4 ++-- 4 files changed, 9 insertions(+), 8 deletions(-) create mode 160000 CommDesk diff --git a/CommDesk b/CommDesk new file mode 160000 index 0000000..46d10ea --- /dev/null +++ b/CommDesk @@ -0,0 +1 @@ +Subproject commit 46d10eab2f2b1414dd007c3869cec4878ee8469a diff --git a/src/Component/ui/Input.tsx b/src/Component/ui/Input.tsx index 629f819..aaa6f0f 100644 --- a/src/Component/ui/Input.tsx +++ b/src/Component/ui/Input.tsx @@ -48,7 +48,7 @@ export const Input = forwardRef( @@ -57,7 +57,7 @@ export const Input = forwardRef(
( required={required} onKeyDown={onKeyDown} onChange={(e) => onChange?.(name, e.target.value)} - className={`flex-1 bg-transparent outline-none text-sm ${inputClassName}`} - style={{ color: theme.text.primary }} + className={`flex-1 bg-black text-white outline-none text-sm ${inputClassName}`} + style={{ color: "white" }} /> {rightIcon && ( diff --git a/src/features/Auth/v1/Pages/LoginPage.tsx b/src/features/Auth/v1/Pages/LoginPage.tsx index 67f39ef..a195a89 100644 --- a/src/features/Auth/v1/Pages/LoginPage.tsx +++ b/src/features/Auth/v1/Pages/LoginPage.tsx @@ -93,9 +93,9 @@ const LoginPage = () => {