@@ -8,7 +8,7 @@ import FullScreenSignup from "@/components/library/marketing/FullScreenSignup";
88
99## Preview
1010
11- <PreviewContainer className = " min-h-[30rem] " >
11+ <PreviewContainer >
1212 <FullScreenSignup />
1313</PreviewContainer >
1414
@@ -69,7 +69,7 @@ const FullScreenSignup = () => {
6969
7070 return (
7171 <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" >
7373 <div className = " w-full h-full z-2 absolute bg-linear-to-t from-transparent to-black" ></div >
7474 <div className = " flex absolute z-2 overflow-hidden backdrop-blur-2xl " >
7575 <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 = () => {
8383 <div className = " w-[8rem] h-[5rem] bg-white absolute z-1 rounded-full bottom-0" ></div >
8484 <div className = " w-[8rem] h-[5rem] bg-white absolute z-1 rounded-full bottom-0" ></div >
8585
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" >
8787 <h1 className = " text-2xl md:text-3xl font-medium leading-tight z-10 tracking-tight relative" >
8888 Design and dev partner for startups and founders.
8989 </h1 >
9090 </div >
9191
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 " >
9393 <div className = " flex flex-col items-left mb-8" >
9494 <div className = " text-orange-500 mb-4" >
9595 <Sunburst className = " h-10 w-10" />
@@ -115,7 +115,7 @@ const FullScreenSignup = () => {
115115 type = " email"
116116 id = " email"
117117 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 ${
119119 emailError ? " border-red-500" : " border-gray-300"
120120 } ` }
121121 value = { email }
@@ -137,7 +137,7 @@ const FullScreenSignup = () => {
137137 <input
138138 type = " password"
139139 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 ${
141141 passwordError ? " border-red-500" : " border-gray-300"
142142 } ` }
143143 value = { password }
@@ -171,8 +171,6 @@ const FullScreenSignup = () => {
171171 </div >
172172 );
173173};
174-
175- export default FullScreenSignup ;
176174```
177175
178176## Usage
0 commit comments