Profile page UI and functionality implemented

This commit is contained in:
adilallo
2026-04-25 17:57:58 -06:00
parent 7dd2562bae
commit 68517796a9
103 changed files with 4439 additions and 1476 deletions
@@ -28,6 +28,7 @@ export const TextInputView = forwardRef<HTMLInputElement, TextInputViewProps>(
focusRingClasses = "",
textHint = false,
formHeader = true,
maxLength,
},
ref,
) => {
@@ -70,6 +71,7 @@ export const TextInputView = forwardRef<HTMLInputElement, TextInputViewProps>(
onBlur={handleBlur}
onMouseDown={handleMouseDown}
disabled={disabled}
maxLength={maxLength}
className={inputClasses}
style={{ borderRadius }}
/>