@@ -34,7 +34,7 @@ export default function Hero() {
3434 "/api/waitlist" ,
3535 {
3636 userEmail : email . trim ( ) ,
37- }
37+ } ,
3838 ) ;
3939
4040 if ( response . data ) {
@@ -62,7 +62,7 @@ export default function Hero() {
6262 } ;
6363
6464 const handleKeyPress = (
65- event : React . KeyboardEvent < HTMLInputElement >
65+ event : React . KeyboardEvent < HTMLInputElement > ,
6666 ) : void => {
6767 if ( event . key === "Enter" && ! isLoading ) {
6868 waitListCall ( ) ;
@@ -71,7 +71,7 @@ export default function Hero() {
7171
7272 return (
7373 < div className = "" >
74- < div className = "relative h-[300px] sm:h-[400px] lg:h-[500px] flex px-4 sm:px-6 md:px-10 lg:px-14 xl:px-28 2xl:px-40 justify-center items-center" >
74+ < div className = "relative h-[300px] sm:h-[400px] flex px-4 sm:px-6 md:px-10 lg:px-14 xl:px-28 2xl:px-40 justify-center items-center " >
7575 < Image className = "absolute opacity-20 z-0" src = { grid } alt = "" />
7676 < div className = " flex flex-col items-center md:font-bold " >
7777 < motion . p
@@ -103,28 +103,6 @@ export default function Hero() {
103103 < p > Introducing the system for modern software development.</ p >
104104 < p > Organize issues, projects, and product roadmaps.</ p >
105105 </ motion . div >
106-
107- { /* <BlurFade inView delay={1} className=" mt-10 flex gap-x-2">
108- <div className="border border-[#686464] h-10 md:h-12 w-fit bg-[#121212a6] flex items-center p-1 rounded-full shadow-2xl shadow-[#7b7a7f74]">
109- <input
110- onChange={(e) => {
111- setEmail(e.target.value);
112- }}
113- className="rounded-md h-full bg-transparent px-3 outline-none font-extralight w-60 sm:w-64 md:w-96 text-[14px] sm:text-sm md:text-[16px]"
114- placeholder="Email"
115- value={email}
116- disabled={isLoading}
117- onKeyDown={handleKeyPress}
118- ></input>
119- <button
120- onClick={waitListCall}
121- disabled={(email.length == 0 ? true : false) || isLoading}
122- className="h-full px-4 text-[14px] sm:text-sm md:text-[16px] rounded-full text-white bg-[#232222] border border-[#565555] cursor-pointer hover:bg-[#363537] transition-all duration-300"
123- >
124- {!isLoading ? "Join waitlist" : <Image src={spinner} alt="" />}
125- </button>
126- </div>
127- </BlurFade> */ }
128106 </ div >
129107 </ div >
130108 < HomeBanner />
@@ -139,9 +117,9 @@ const HomeBanner = () => {
139117 inView
140118 className = "px-4 sm:px-6 md:px-10 lg:px-14 xl:px-28 2xl:px-40"
141119 >
142- < div className = "flex justify-center border border-[#313032 ] rounded-2xl p-1 md:p-2 bg-[#16161681 ]" >
120+ < div className = "relative flex justify-center border-t border-[#313032c6 ] rounded-2xl p-1 md:p-2 bg-[#0A0A0A ]" >
143121 < Image
144- className = "rounded-[11px] border border-[#515252] "
122+ className = "rounded-[11px] border border-[#313032] mask-bottom-dark "
145123 src = { homebannerImg }
146124 alt = "img"
147125 />
0 commit comments