Skip to content

Commit 193a80a

Browse files
Merge pull request #32 from Midhat-kazmi/feature/blog-ui-upgrade
feat: temporarily hide ambassador program page
2 parents 0037976 + aa3d29a commit 193a80a

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

app/ambassador-program/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ const journey = [
210210
]
211211

212212
export default function AmbassadorProgramPage() {
213+
return null
213214
const [isHeroVisible, setIsHeroVisible] = useState(false)
214215
const [scrollY, setScrollY] = useState(0)
215216
const [statValues, setStatValues] = useState(stats.map(() => 0))

app/our-story/page-old.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,13 @@ export default function OurStoryPage() {
134134
<Link href="/mentorship" className="btn-secondary">
135135
Explore Mentorship
136136
</Link>
137+
{/*
137138
<Link href="/ambassador-program" className="btn-secondary">
138139
Become Ambassador
139140
</Link>
141+
142+
*/}
143+
140144
</div>
141145

142146
<div className="grid grid-cols-2 md:grid-cols-4 gap-[1px] bg-border border border-border">

components/footer.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,13 @@ export default function Footer() {
251251
MindMaster
252252
</Link>
253253
</li>
254-
<li>
254+
{/* <li>
255255
<Link href="/ambassador-program" className="text-background/70 hover:text-background transition-colors">
256256
Ambassadorship
257257
</Link>
258258
</li>
259+
260+
*/}
259261
</ul>
260262
</div>
261263
</div>

components/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function Navbar() {
3131
{ href: "/dsoc", label: "DSOC" },
3232
{ href: "/fellowship", label: "Fellowship" },
3333
{ href: "/mentorship", label: "Mentorship" },
34-
{ href: "/ambassador-program", label: "Ambassadorship" },
34+
//{ href: "/ambassador-program", label: "Ambassadorship" },
3535
{ href: "/weekend-tech-grind", label: "Weekend Grind" },
3636
];
3737

0 commit comments

Comments
 (0)