Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 0 additions & 112 deletions app/mentors/page.tsx

This file was deleted.

14 changes: 7 additions & 7 deletions app/mindmaster/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function MindMaster() {
{/* ============================================
HERO SECTION
============================================ */}
<section className="py-24 md:py-32 px-6 lg:px-12 border-b border-border">
<section className="py-16 md:py-20 px-6 lg:px-12 border-b border-border">
<div className="max-w-[1100px] mx-auto">
<div className="max-w-3xl">
<p className="text-[11px] font-semibold tracking-[3px] uppercase text-muted-foreground mb-6">
Expand Down Expand Up @@ -111,7 +111,7 @@ export default function MindMaster() {
{/* ============================================
PHILOSOPHY SECTION
============================================ */}
<section className="py-20 md:py-28 px-6 lg:px-12 bg-muted/20">
<section className="py-12 md:py-16 px-6 lg:px-12 bg-muted/20">
<div className="max-w-[1100px] mx-auto">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
{[
Expand All @@ -132,7 +132,7 @@ export default function MindMaster() {
},
].map((item, i) => (
<div key={i} className="group">
<div className="text-[10px] font-bold tracking-[3px] text-muted-foreground mb-4">
<div className="text-[10px] font-bold tracking-[3px] text-muted-foreground/30 mb-4">
{item.number}
</div>
<h3 className="text-lg font-semibold mb-3">{item.title}</h3>
Expand Down Expand Up @@ -171,7 +171,7 @@ export default function MindMaster() {
FEATURED TALKS SECTION
============================================ */}
{(mindmasterData.talkOfTheWeek || mindmasterData.talkOfTheMonth) && (
<section className="py-20 md:py-28 px-6 lg:px-12 border-b border-border">
<section className="py-12 md:py-16 px-6 lg:px-12 border-b border-border">
<div className="max-w-[1100px] mx-auto">
<div className="flex items-center gap-3 mb-10">
<Video className="w-5 h-5" />
Expand Down Expand Up @@ -265,7 +265,7 @@ export default function MindMaster() {
FEATURED BOOKS SECTION
============================================ */}
{(mindmasterData.bookOfTheWeek || mindmasterData.bookOfTheMonth) && (
<section className="py-20 md:py-28 px-6 lg:px-12 bg-muted/20 border-b border-border">
<section className="py-12 md:py-16 px-6 lg:px-12 bg-muted/20 border-b border-border">
<div className="max-w-[1100px] mx-auto">
<div className="flex items-center gap-3 mb-10">
<Book className="w-5 h-5" />
Expand Down Expand Up @@ -333,7 +333,7 @@ export default function MindMaster() {
RECOMMENDED TALKS SECTION
============================================ */}
{mindmasterData.recommendedTalks && mindmasterData.recommendedTalks.length > 0 && (
<section className="py-20 md:py-28 px-6 lg:px-12 border-b border-border">
<section className="py-12 md:py-16 px-6 lg:px-12 border-b border-border">
<div className="max-w-[1100px] mx-auto">
<div className="flex items-center gap-3 mb-10">
<Video className="w-5 h-5" />
Expand Down Expand Up @@ -382,7 +382,7 @@ export default function MindMaster() {
{/* ============================================
CTA SECTION
============================================ */}
<section className="py-20 md:py-28 px-6 lg:px-12 bg-foreground text-background">
<section className="py-12 md:py-16 px-6 lg:px-12 bg-foreground text-background">
<div className="max-w-[1100px] mx-auto text-center">
<p className="text-[11px] font-semibold tracking-[3px] uppercase text-background/40 mb-6">
Join the Community
Expand Down
10 changes: 0 additions & 10 deletions app/our-story/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1004,16 +1004,6 @@ export default function OurStoryPage() {
</div>
))}
</div>

<div className="text-center mt-10 reveal">
<Link
href="/mentors"
className="inline-flex items-center gap-2 text-sm font-medium hover:underline"
>
View All Mentors
<ArrowRight className="w-4 h-4" />
</Link>
</div>
</div>
</section>

Expand Down