Skip to content

Commit be7dc1b

Browse files
committed
Reduce bottom spacing in ProjectsSection for improved layout consistency
1 parent e62eb02 commit be7dc1b

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

components/projects-section.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,8 @@ export default function ProjectsSection() {
8888
]
8989

9090
return (
91-
<section ref={ref} className="relative pt-12 pb-24 bg-background" id="projects">
91+
<section ref={ref} className="relative pt-12 pb-12 bg-background" id="projects">
9292
<div className="max-w-6xl mx-auto px-6">
93-
{/* Find Your Printer */}
9493
<motion.div
9594
initial={{ opacity: 0, y: 20 }}
9695
animate={isInView ? { opacity: 1, y: 0 } : { opacity: 0, y: 20 }}
@@ -112,7 +111,7 @@ export default function ProjectsSection() {
112111
Most modern printers work using OpenPrinting software without additional drivers. We also host a compatibility database for legacy printers supported by free software drivers.
113112
</motion.p>
114113

115-
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-24">
114+
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12">
116115
{softwares.map((software, index) => (
117116
<motion.div
118117
key={index}
@@ -152,9 +151,8 @@ export default function ProjectsSection() {
152151
))}
153152
</div>
154153

155-
<div className="section-divider mb-24" />
154+
<div className="section-divider mb-12" />
156155

157-
{/* Collaborations */}
158156
<motion.div
159157
initial={{ opacity: 0, y: 20 }}
160158
animate={isInView ? { opacity: 1, y: 0 } : { opacity: 0, y: 20 }}
@@ -242,7 +240,7 @@ export default function ProjectsSection() {
242240
</div>
243241
</div>
244242

245-
<div className="section-divider mt-24 mx-auto max-w-6xl" />
243+
<div className="section-divider mt-12 mx-auto max-w-6xl" />
246244
</section>
247245
)
248246
}

0 commit comments

Comments
 (0)