Skip to content

Commit 8b93ba6

Browse files
Fix: Hero spacing and Home footer
Adjust spacing in Hero component and fix Home footer functionality.
1 parent 714b6f8 commit 8b93ba6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/Hero.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ const Hero = () => {
3434
/>
3535
</div>
3636

37-
<div className="star-wars-crawl mb-10">
37+
<div className="star-wars-crawl mb-8">
3838
<div className="star-wars-content">
3939
<h1
4040
className="text-3xl sm:text-4xl md:text-5xl lg:text-6xl mb-6 text-glow text-center font-nasalization leading-tight"
4141
style={{
4242
fontFamily: "'Nasalization', sans-serif !important",
43-
letterSpacing: '0.1em'
43+
letterSpacing: '0.02em'
4444
}}
4545
>
4646
<span className="text-alien-green">Δlieπ</span>
@@ -51,11 +51,11 @@ const Hero = () => {
5151
</div>
5252
</div>
5353

54-
<div className="star-wars-crawl mb-10">
54+
<div className="star-wars-crawl mb-8">
5555
<div className="star-wars-content">
5656
<motion.p
5757
className="text-base sm:text-lg md:text-xl text-gray-300 max-w-4xl mx-auto font-[Exo] text-center leading-relaxed"
58-
style={{ letterSpacing: '0.025em' }}
58+
style={{ letterSpacing: '0.01em' }}
5959
initial={{ opacity: 0 }}
6060
animate={{ opacity: 1 }}
6161
transition={{ delay: 0.3, duration: 0.8 }}
@@ -67,7 +67,7 @@ const Hero = () => {
6767
</motion.div>
6868

6969
<motion.div
70-
className="flex flex-wrap justify-center gap-4 mt-12"
70+
className="flex flex-wrap justify-center gap-4 mt-8"
7171
initial={{ opacity: 0, y: 20 }}
7272
animate={{ opacity: 1, y: 0 }}
7373
transition={{ delay: 0.5, duration: 0.8 }}

0 commit comments

Comments
 (0)