Skip to content

Commit 8949088

Browse files
committed
fix: UI Responsiveness of Landing Page
1 parent 12eb954 commit 8949088

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

apps/web/src/components/landing-sections/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { motion } from "framer-motion";
88

99
const Hero = () => {
1010
return (
11-
<div className="w-full h-[50dvh] lg:h-[69dvh] relative overflow-hidden z-10 p-4 lg:p-[60px] flex flex-col items-center justify-center gap-6 ">
11+
<div className="w-full min-h-[50dvh] lg:h-[69dvh] relative overflow-hidden z-10 p-4 lg:p-[60px] flex flex-col items-center justify-center gap-6 ">
1212
<Image
1313
src="/assets/bgmain.svg"
1414
alt="background"

apps/web/src/components/landing-sections/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Footer = () => {
2020
{/* Bottom Section */}
2121
<div className="pt-8 border-t border-[#252525] space-y-8">
2222
{/* Top Row - Profile Picture and Navigation */}
23-
<div className="relative flex items-start justify-between">
23+
<div className="relative flex items-start justify-between gap-6 lg:gap-0">
2424
{/* Profile Picture - Left */}
2525
<div className="flex flex-col gap-4">
2626
<div>

apps/web/src/components/landing-sections/navbar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ const Navbar = () => {
104104
<span className="text-sm font-medium">Contribute</span>
105105
</Link>
106106
<Link href="/dashboard/home" className="cursor-pointer z-30">
107-
<PrimaryButtom>
108-
<Terminal size={20} />
109-
<span className="md:inline">Get Started</span>
107+
<PrimaryButtom classname="px-3 py-2 text-sm whitespace-nowrap md:px-5 md:py-3 md:text-base">
108+
<Terminal className="w-4 h-4 md:w-5 md:h-5"/>
109+
<span className="whitespace-nowrap">Get Started</span>
110110
</PrimaryButtom>
111111
</Link>
112112
</div>

0 commit comments

Comments
 (0)