Skip to content

Commit 0a9a8ff

Browse files
Reduce Hero section padding
Adjusted top and bottom padding in HeroSection to improve element spacing.
1 parent 3ce5acc commit 0a9a8ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/landing/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ interface HeroSectionProps {
99

1010
export const HeroSection = ({ scrollY, onRedirectToDashboard }: HeroSectionProps) => {
1111
return (
12-
<section className="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50/50 via-white to-purple-50/50 relative">
12+
<section className="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50/50 via-white to-purple-50/50 relative py-12">
1313
{/* Animated Grid Background */}
1414
<div className="absolute inset-0 bg-[linear-gradient(to_right,#8080800a_1px,transparent_1px),linear-gradient(to_bottom,#8080800a_1px,transparent_1px)] bg-[size:14px_24px] animate-pulse"></div>
1515

@@ -34,7 +34,7 @@ export const HeroSection = ({ scrollY, onRedirectToDashboard }: HeroSectionProps
3434
</div>
3535

3636
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
37-
<div className="animate-fade-in space-y-8">
37+
<div className="animate-fade-in space-y-12">
3838
{/* Badge */}
3939
<div className="inline-flex items-center gap-2 bg-gradient-to-r from-blue-100 to-purple-100 text-blue-800 px-6 py-3 rounded-full text-sm font-medium border border-blue-200/50 backdrop-blur-sm animate-scale-in">
4040
<CheckCircle className="w-4 h-4" />

0 commit comments

Comments
 (0)