diff options
| author | Kinfe123 <[email protected]> | 2024-06-22 02:10:08 +0300 |
|---|---|---|
| committer | Kinfe123 <[email protected]> | 2024-06-22 02:10:08 +0300 |
| commit | e2815c4f043f408be1701d4c5ecee3100bee5277 (patch) | |
| tree | e996110828e595b7008d90ead1a348e952e190fd /apps/web | |
| parent | fix: revamp (diff) | |
| download | supermemory-e2815c4f043f408be1701d4c5ecee3100bee5277.tar.xz supermemory-e2815c4f043f408be1701d4c5ecee3100bee5277.zip | |
fix: revamp
Diffstat (limited to 'apps/web')
| -rw-r--r-- | apps/web/app/(landing)/Cta.tsx | 3 | ||||
| -rw-r--r-- | apps/web/app/(landing)/Features.tsx | 2 | ||||
| -rw-r--r-- | apps/web/app/(landing)/footer.tsx | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/apps/web/app/(landing)/Cta.tsx b/apps/web/app/(landing)/Cta.tsx index 128581e8..91190574 100644 --- a/apps/web/app/(landing)/Cta.tsx +++ b/apps/web/app/(landing)/Cta.tsx @@ -14,6 +14,7 @@ function Cta() { className="relative bg-page-gradient dark:[box-shadow:0_-20px_80px_-20px_#8686f01f_inset] min-h-[600px] border-[1px] border-white/20 flex flex-col gap-8 justify-center items-center mt-60 mb-44 w-3/4 rounded-3xl py-10 px-8 mx-auto" > <div className="absolute -z-1 inset-0 rounded-3xl opacity-5 h-[600px] w-full bg-transparent bg-[linear-gradient(to_right,#f0f0f0_1px,transparent_1px),linear-gradient(to_bottom,#f0f0f0_1px,transparent_1px)] bg-[size:6rem_4rem] [mask-image:radial-gradient(ellipse_80%_50%_at_50%_0%,#000_70%,transparent_110%)]"></div> + <div className="absolute top-0 z-0 w-screen right-0 mx-auto h-[500px] overflow-hidden bg-inherit bg-[radial-gradient(ellipse_20%_80%_at_50%_-20%,rgba(120,119,198,0.3),rgba(255,255,255,0))]"></div> <div className="absolute left-0 w-full h-full z-[-1]"> {/* a blue gradient line that's slightly tilted with blur (a lotof blur)*/} @@ -45,7 +46,7 @@ function Cta() { <p className="z-20 text-center text-lg"> Sign up for the waitlist and be the first to try Supermemory </p> - <div className="w-1/2 mx-auto"> + <div className="md:w-1/2 lg:w-3/4 mx-auto"> <EmailInput /> </div> </section> diff --git a/apps/web/app/(landing)/Features.tsx b/apps/web/app/(landing)/Features.tsx index fd30a413..956a889b 100644 --- a/apps/web/app/(landing)/Features.tsx +++ b/apps/web/app/(landing)/Features.tsx @@ -30,7 +30,7 @@ export default function Features() { }, []); return ( - <section className="overflow-hidden relative w-full max-lg:after:hidden"> + <section className="overflow-hidden relative w-full max-lg:after:hidden mt-10"> {/* <img src="https://tailwindcss.com/_next/static/media/[email protected]" className="absolute -top-0 left-10 opacity-60 z-2" diff --git a/apps/web/app/(landing)/footer.tsx b/apps/web/app/(landing)/footer.tsx index e4c54dea..48abc048 100644 --- a/apps/web/app/(landing)/footer.tsx +++ b/apps/web/app/(landing)/footer.tsx @@ -3,7 +3,7 @@ import LinkArrow from "./linkArrow"; function Footer() { return ( - <footer className="mt-20 flex w-full overflow-y-hidden items-center justify-between gap-4 px-8 py-8 text-sm text-zinc-500 overflow-hidden"> + <footer className="mt-20 flex w-full overflow-y-hidden items-center justify-between gap-4 px-8 py-8 text-sm text-zinc-500 overflow-hidden"> <p>© 2024 Supermemory.ai</p> <div className="flex gap-5"> <a |