Skip to content

Commit 5709b08

Browse files
Merge pull request #5 from devweekends/reverent-mendeleev
feat: Fix MindMaster: reduce spacing, remove emoji icons
2 parents ecd065c + dbacf1b commit 5709b08

3 files changed

Lines changed: 7 additions & 129 deletions

File tree

app/mentors/page.tsx

Lines changed: 0 additions & 112 deletions
This file was deleted.

app/mindmaster/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default function MindMaster() {
7474
{/* ============================================
7575
HERO SECTION
7676
============================================ */}
77-
<section className="py-24 md:py-32 px-6 lg:px-12 border-b border-border">
77+
<section className="py-16 md:py-20 px-6 lg:px-12 border-b border-border">
7878
<div className="max-w-[1100px] mx-auto">
7979
<div className="max-w-3xl">
8080
<p className="text-[11px] font-semibold tracking-[3px] uppercase text-muted-foreground mb-6">
@@ -111,7 +111,7 @@ export default function MindMaster() {
111111
{/* ============================================
112112
PHILOSOPHY SECTION
113113
============================================ */}
114-
<section className="py-20 md:py-28 px-6 lg:px-12 bg-muted/20">
114+
<section className="py-12 md:py-16 px-6 lg:px-12 bg-muted/20">
115115
<div className="max-w-[1100px] mx-auto">
116116
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
117117
{[
@@ -132,7 +132,7 @@ export default function MindMaster() {
132132
},
133133
].map((item, i) => (
134134
<div key={i} className="group">
135-
<div className="text-[10px] font-bold tracking-[3px] text-muted-foreground mb-4">
135+
<div className="text-[10px] font-bold tracking-[3px] text-muted-foreground/30 mb-4">
136136
{item.number}
137137
</div>
138138
<h3 className="text-lg font-semibold mb-3">{item.title}</h3>
@@ -171,7 +171,7 @@ export default function MindMaster() {
171171
FEATURED TALKS SECTION
172172
============================================ */}
173173
{(mindmasterData.talkOfTheWeek || mindmasterData.talkOfTheMonth) && (
174-
<section className="py-20 md:py-28 px-6 lg:px-12 border-b border-border">
174+
<section className="py-12 md:py-16 px-6 lg:px-12 border-b border-border">
175175
<div className="max-w-[1100px] mx-auto">
176176
<div className="flex items-center gap-3 mb-10">
177177
<Video className="w-5 h-5" />
@@ -265,7 +265,7 @@ export default function MindMaster() {
265265
FEATURED BOOKS SECTION
266266
============================================ */}
267267
{(mindmasterData.bookOfTheWeek || mindmasterData.bookOfTheMonth) && (
268-
<section className="py-20 md:py-28 px-6 lg:px-12 bg-muted/20 border-b border-border">
268+
<section className="py-12 md:py-16 px-6 lg:px-12 bg-muted/20 border-b border-border">
269269
<div className="max-w-[1100px] mx-auto">
270270
<div className="flex items-center gap-3 mb-10">
271271
<Book className="w-5 h-5" />
@@ -333,7 +333,7 @@ export default function MindMaster() {
333333
RECOMMENDED TALKS SECTION
334334
============================================ */}
335335
{mindmasterData.recommendedTalks && mindmasterData.recommendedTalks.length > 0 && (
336-
<section className="py-20 md:py-28 px-6 lg:px-12 border-b border-border">
336+
<section className="py-12 md:py-16 px-6 lg:px-12 border-b border-border">
337337
<div className="max-w-[1100px] mx-auto">
338338
<div className="flex items-center gap-3 mb-10">
339339
<Video className="w-5 h-5" />
@@ -382,7 +382,7 @@ export default function MindMaster() {
382382
{/* ============================================
383383
CTA SECTION
384384
============================================ */}
385-
<section className="py-20 md:py-28 px-6 lg:px-12 bg-foreground text-background">
385+
<section className="py-12 md:py-16 px-6 lg:px-12 bg-foreground text-background">
386386
<div className="max-w-[1100px] mx-auto text-center">
387387
<p className="text-[11px] font-semibold tracking-[3px] uppercase text-background/40 mb-6">
388388
Join the Community

app/our-story/page.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,16 +1004,6 @@ export default function OurStoryPage() {
10041004
</div>
10051005
))}
10061006
</div>
1007-
1008-
<div className="text-center mt-10 reveal">
1009-
<Link
1010-
href="/mentors"
1011-
className="inline-flex items-center gap-2 text-sm font-medium hover:underline"
1012-
>
1013-
View All Mentors
1014-
<ArrowRight className="w-4 h-4" />
1015-
</Link>
1016-
</div>
10171007
</div>
10181008
</section>
10191009

0 commit comments

Comments
 (0)