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
1 change: 1 addition & 0 deletions app/ambassador-program/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ const journey = [
]

export default function AmbassadorProgramPage() {
return null
const [isHeroVisible, setIsHeroVisible] = useState(false)
const [scrollY, setScrollY] = useState(0)
const [statValues, setStatValues] = useState(stats.map(() => 0))
Expand Down
4 changes: 4 additions & 0 deletions app/our-story/page-old.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,13 @@ export default function OurStoryPage() {
<Link href="/mentorship" className="btn-secondary">
Explore Mentorship
</Link>
{/*
<Link href="/ambassador-program" className="btn-secondary">
Become Ambassador
</Link>

*/}

</div>

<div className="grid grid-cols-2 md:grid-cols-4 gap-[1px] bg-border border border-border">
Expand Down
4 changes: 3 additions & 1 deletion components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,13 @@ export default function Footer() {
MindMaster
</Link>
</li>
<li>
{/* <li>
<Link href="/ambassador-program" className="text-background/70 hover:text-background transition-colors">
Ambassadorship
</Link>
</li>

*/}
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function Navbar() {
{ href: "/dsoc", label: "DSOC" },
{ href: "/fellowship", label: "Fellowship" },
{ href: "/mentorship", label: "Mentorship" },
{ href: "/ambassador-program", label: "Ambassadorship" },
//{ href: "/ambassador-program", label: "Ambassadorship" },
{ href: "/weekend-tech-grind", label: "Weekend Grind" },
];

Expand Down
Loading