@@ -8,7 +8,7 @@ import FullScreenSignup from "@/components/library/marketing/FullScreenSignup";
8
8
9
9
## Preview
10
10
11
- <PreviewContainer className = " min-h-[30rem] " >
11
+ <PreviewContainer >
12
12
<FullScreenSignup />
13
13
</PreviewContainer >
14
14
@@ -69,7 +69,7 @@ const FullScreenSignup = () => {
69
69
70
70
return (
71
71
<div className = " min-h-screen flex items-center justify-center overflow-hidden p-4l" >
72
- <div className = " w-full relative max-w-5xl overflow-hidden flex flex-col md:flex-row shadow-xl " >
72
+ <div className = " w-full relative max-w-5xl overflow-hidden flex flex-col md:flex-row" >
73
73
<div className = " w-full h-full z-2 absolute bg-linear-to-t from-transparent to-black" ></div >
74
74
<div className = " flex absolute z-2 overflow-hidden backdrop-blur-2xl " >
75
75
<div className = " h-[40rem] z-2 w-[4rem] bg-linear-90 from-[#ffffff00] via-[#000000] via-[69%] to-[#ffffff30] opacity-30 overflow-hidden" ></div >
@@ -83,13 +83,13 @@ const FullScreenSignup = () => {
83
83
<div className = " w-[8rem] h-[5rem] bg-white absolute z-1 rounded-full bottom-0" ></div >
84
84
<div className = " w-[8rem] h-[5rem] bg-white absolute z-1 rounded-full bottom-0" ></div >
85
85
86
- <div className = " bg-black text-white p-8 md:p-12 md:w-1/2 relative rounded-bl-3xl overflow-hidden" >
86
+ <div className = " bg-black text-gray-100 p-8 md:p-12 md:w-1/2 relative rounded-bl-3xl overflow-hidden" >
87
87
<h1 className = " text-2xl md:text-3xl font-medium leading-tight z-10 tracking-tight relative" >
88
88
Design and dev partner for startups and founders.
89
89
</h1 >
90
90
</div >
91
91
92
- <div className = " p-8 md:p-12 md:w-1/2 flex flex-col bg-primary z-99 text-primary-foreground " >
92
+ <div className = " p-8 md:p-12 md:w-1/2 flex flex-col bg-gray-100 z-99 text-black " >
93
93
<div className = " flex flex-col items-left mb-8" >
94
94
<div className = " text-orange-500 mb-4" >
95
95
<Sunburst className = " h-10 w-10" />
@@ -115,7 +115,7 @@ const FullScreenSignup = () => {
115
115
type = " email"
116
116
id = " email"
117
117
placeholder = " hi@hextastudio.in"
118
- className = { ` text-sm w-full py-2 px-3 border rounded-lg focus:outline-none focus:ring-1 focus:ring-orange-500 ${
118
+ className = { ` text-sm w-full py-2 px-3 border rounded-lg focus:outline-none focus:ring-1 focus:ring-orange-500 bg-white ${
119
119
emailError ? " border-red-500" : " border-gray-300"
120
120
} ` }
121
121
value = { email }
@@ -137,7 +137,7 @@ const FullScreenSignup = () => {
137
137
<input
138
138
type = " password"
139
139
id = " password"
140
- className = { ` text-sm w-full py-2 px-3 border rounded-lg focus:outline-none focus:ring-1 focus:ring-orange-500 ${
140
+ className = { ` text-sm w-full py-2 px-3 border rounded-lg focus:outline-none focus:ring-1 focus:ring-orange-500 bg-white ${
141
141
passwordError ? " border-red-500" : " border-gray-300"
142
142
} ` }
143
143
value = { password }
@@ -171,8 +171,6 @@ const FullScreenSignup = () => {
171
171
</div >
172
172
);
173
173
};
174
-
175
- export default FullScreenSignup ;
176
174
```
177
175
178
176
## Usage
0 commit comments