diff options
| author | Kinfe123 <[email protected]> | 2024-07-04 10:54:09 +0300 |
|---|---|---|
| committer | Kinfe123 <[email protected]> | 2024-07-04 10:54:09 +0300 |
| commit | 823bc141cc422be5acc692fef1cebf3cc0721ac3 (patch) | |
| tree | ed8d18f6b956fcd21a3b095028afcb965fb7180d /apps/web/app | |
| parent | fix: centering the btn (diff) | |
| download | supermemory-823bc141cc422be5acc692fef1cebf3cc0721ac3.tar.xz supermemory-823bc141cc422be5acc692fef1cebf3cc0721ac3.zip | |
fix: responsiveness and image border radius
Diffstat (limited to 'apps/web/app')
| -rw-r--r-- | apps/web/app/(landing)/Hero.tsx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/apps/web/app/(landing)/Hero.tsx b/apps/web/app/(landing)/Hero.tsx index 4a0529aa..c81e1963 100644 --- a/apps/web/app/(landing)/Hero.tsx +++ b/apps/web/app/(landing)/Hero.tsx @@ -53,7 +53,7 @@ function Hero() { </motion.p> <Link href="/signin" - className="inline-flex text-lg gap-x-2 mt-2 backdrop-blur-md text-white justify-start items-start py-3 px-5 ml-3 w-full rounded-3xl border duration-200 sm:w-auto group bg-page-gradient border-white/30 text-md font-geistSans hover:border-zinc-600 hover:bg-transparent/10 hover:text-zinc-100" + className="inline-flex text-lg gap-x-2 mt-2 backdrop-blur-md text-white justify-center items-center py-3 px-5 ml-3 w-fit rounded-3xl border duration-200 group bg-page-gradient border-white/30 text-md font-geistSans hover:border-zinc-600 hover:bg-transparent/10 hover:text-zinc-100" > It's free. Sign up now <div className="flex overflow-hidden relative justify-center items-center ml-1 w-5 h-5"> @@ -72,13 +72,9 @@ function Hero() { }} src="/images/landing-hero.jpeg" alt="Landing page background" - width={1512} - height={1405} draggable="false" - className="z-40 md:mt-[-40px] hidden sm:block h-full max-w-[70vw] mx-auto md:w-full select-none px-5 rounded-2xl" - style={{ - borderRadius: "20px", - }} + className="z-40 md:mt-[-40px] hidden sm:block h-full max-w-[70vw] mx-auto md:w-full select-none rounded-2xl" + /> <div className="absolute -z-10 left-0 top-[10%] h-32 w-[90%] overflow-x-hidden bg-[rgb(54,157,253)] bg-opacity-100 blur-[337.4px]" |