@@ -31,23 +31,23 @@ export function BioForm() {
31
31
} )
32
32
}
33
33
return (
34
- < div className = "relative" >
34
+ < div className = "relative w-full " >
35
35
< div className = "space-y-4" >
36
36
< NavMenu >
37
37
< p className = "text-base text-white/60" >
38
38
Step { getStepNumberFor ( "bio" ) } of { totalSteps }
39
39
</ p >
40
40
</ NavMenu >
41
- < h1 className = "max-sm :text-4xl text-white font-medium" >
42
- Tell us about yourself
41
+ < h1 className = "text-2xl md :text-4xl text-white font-medium" >
42
+ Tell Supermemory about yourself
43
43
</ h1 >
44
- < p className = "text-2xl max-sm :text-lg text-white/80" >
45
- What should Supermemory know about you?
44
+ < p className = "text-lg md :text-xl text-white/80" >
45
+ share with Supermemory what you do, who you are, and what you're interested in
46
46
</ p >
47
47
</ div >
48
48
< Textarea
49
49
autoFocus
50
- className = "font-sans mt-6 text-base! text-white tracking-normal font-medium border bg-white/30 border-zinc-200 rounded-lg !field-sizing-normal !min-h-[calc(3*1.5rem+1rem)]"
50
+ className = "font-sans mt-6 text-base! placeholder: text-white/80 text-white tracking-normal font-medium border bg-white/30 border-zinc-200 rounded-lg !field-sizing-normal !min-h-[calc(3*1.5rem+1rem)] w-full "
51
51
placeholder = "I'm a software engineer from San Francisco..."
52
52
rows = { 3 }
53
53
value = { bio }
@@ -61,12 +61,12 @@ export function BioForm() {
61
61
animate = { { opacity : 1 , filter : "blur(0px)" , scale : 1 } }
62
62
exit = { { opacity : 0 , filter : "blur(10px)" , scale : 0.95 } }
63
63
transition = { { duration : 0.2 , ease : "easeOut" } }
64
- className = "flex justify-end mt-2 absolute -bottom-12 right-0"
64
+ className = "flex justify-end mt-4 md:mt-2 md: absolute md: -bottom-12 md: right-0"
65
65
>
66
66
< Button
67
67
variant = "link"
68
68
size = "lg"
69
- className = "text-white/80 font-medium! text-lg underline w-fit px-0! cursor-pointer"
69
+ className = "text-white/80 font-medium! text-base md:text- lg underline w-fit px-0! cursor-pointer"
70
70
onClick = { handleNext }
71
71
>
72
72
Save & Continue
@@ -79,12 +79,12 @@ export function BioForm() {
79
79
animate = { { opacity : 1 , filter : "blur(0px)" } }
80
80
exit = { { opacity : 0 , filter : "blur(5px)" } }
81
81
transition = { { duration : 0.2 , ease : "easeOut" } }
82
- className = "flex justify-end mt-2 absolute -bottom-12 right-0"
82
+ className = "flex justify-end mt-4 md:mt-2 md: absolute md: -bottom-12 md: right-0"
83
83
>
84
84
< Button
85
85
variant = "link"
86
86
size = "lg"
87
- className = "text-white/80 font-medium! text-lg underline w-fit px-0! cursor-pointer"
87
+ className = "text-white/80 font-medium! text-base md:text- lg underline w-fit px-0! cursor-pointer"
88
88
onClick = { handleNext }
89
89
>
90
90
Skip For Now
0 commit comments