diff options
| author | Kinfe123 <[email protected]> | 2024-06-22 02:35:37 +0300 |
|---|---|---|
| committer | Kinfe123 <[email protected]> | 2024-06-22 02:35:37 +0300 |
| commit | f80ce8fda47c80400dfe3f44d57200663dc93f86 (patch) | |
| tree | fb74a6dffd294dbad642fb9964a714c981b8678f | |
| parent | fix: revamp (diff) | |
| download | supermemory-f80ce8fda47c80400dfe3f44d57200663dc93f86.tar.xz supermemory-f80ce8fda47c80400dfe3f44d57200663dc93f86.zip | |
fix: input
| -rw-r--r-- | apps/web/app/(landing)/Cta.tsx | 2 | ||||
| -rw-r--r-- | apps/web/app/(landing)/EmailInput.tsx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/app/(landing)/Cta.tsx b/apps/web/app/(landing)/Cta.tsx index 91190574..a630a5de 100644 --- a/apps/web/app/(landing)/Cta.tsx +++ b/apps/web/app/(landing)/Cta.tsx @@ -40,7 +40,7 @@ function Cta() { <ChevronRight className="inline w-4 h-4 ml-2 group-hover:translate-x-1 duration-300" /> </p> </h1> - <h1 className="z-20 mx-auto mt-0 max-w-xl font-normal tracking-tighter text-5xl md:text-6xl lg:text-7xl text-center text-white"> + <h1 className="z-20 mx-auto mt-0 max-w-xl font-normal tracking-tighter text-5xl md:text-6xl lg:text-7xl text-center text-transparent bg-clip-text bg-gradient-to-tr from-zinc-400/50 to-white/60 via-white"> Your bookmarks are collecting dust. </h1> <p className="z-20 text-center text-lg"> diff --git a/apps/web/app/(landing)/EmailInput.tsx b/apps/web/app/(landing)/EmailInput.tsx index 658d5cf9..3aa1da00 100644 --- a/apps/web/app/(landing)/EmailInput.tsx +++ b/apps/web/app/(landing)/EmailInput.tsx @@ -34,12 +34,12 @@ function EmailInput() { className="flex w-full items-center justify-center gap-2" > <div - className={`transition-width z-20 rounded-2xl bg-gradient-to-br from-gray-200/70 to-transparent p-[0] duration-300 ease-in-out ${email ? "w-[90%] md:w-[42%]" : "w-full md:w-1/2"}`} + className={`transition-width z-20 rounded-2xl bg-glass-gradient backdrop-blur-sm dark:[box-shadow:0_-20px_80px_-20px_#8686f01f_inset] border-[1px] border-white/5 from-gray-200/70 to-transparent p-[0] duration-300 ease-in-out ${email ? "w-[90%] md:w-[42%]" : "w-full md:w-1/2"}`} > <input type="email" name="email" - className={`transition-width py-4 bg-page-gradient flex w-full items-center rounded-xl border-white/5 bg-[#37485E] px-4 outline-none duration-300 focus:outline-none`} + className={`transition-width py-4 bg-page-gradient flex w-full items-center rounded-xl border-white/5 bg-transparent px-4 outline-none duration-300 focus:outline-none`} placeholder="Enter your email" value={email} required |