Skip to content

Commit bf52dd1

Browse files
Matt DeanMatt Dean
authored andcommitted
nav: reorder demos (Mint→Protect→Pay), remove demo links from Govern nav
1 parent 50144ac commit bf52dd1

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

satgate-landing/app/govern/page.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ export default function GovernPage() {
2626
</Link>
2727

2828
<div className="hidden md:flex gap-6 text-sm font-medium text-gray-400">
29-
<Link href="/protect" className="hover:text-white transition">Protect Demo</Link>
30-
<Link href="/pay" className="hover:text-white transition">Pay Demo</Link>
31-
<Link href="/govern" className="text-white transition">Govern</Link>
32-
<Link href="#" className="hover:text-white transition">Pricing</Link>
29+
<Link href="/govern" className="text-white transition">Enterprise</Link>
30+
<Link href="/pricing" className="hover:text-white transition">Pricing</Link>
3331
<a href="https://cloud.satgate.io/docs" target="_blank" rel="noopener noreferrer" className="hover:text-white transition">Docs</a>
3432
<a href="https://cloud.satgate.io/cloud/login" target="_blank" rel="noopener noreferrer" className="hover:text-white transition">Cloud</a>
3533
</div>
@@ -47,10 +45,8 @@ export default function GovernPage() {
4745
<div className={`md:hidden overflow-hidden transition-all duration-300 ease-in-out ${mobileMenuOpen ? 'max-h-96 opacity-100' : 'max-h-0 opacity-0'}`}>
4846
<div className="bg-black/95 backdrop-blur-xl border-t border-gray-800 px-4 py-4 space-y-1">
4947
{[
50-
{ href: '/protect', label: 'Protect Demo' },
51-
{ href: '/pay', label: 'Pay Demo' },
52-
{ href: '/govern', label: 'Govern' },
53-
{ href: '#', label: 'Pricing' },
48+
{ href: '/govern', label: 'Enterprise' },
49+
{ href: '/pricing', label: 'Pricing' },
5450
].map(item => (
5551
<Link key={item.href} href={item.href} onClick={() => setMobileMenuOpen(false)} className="block text-gray-400 hover:text-white hover:bg-gray-800/50 transition py-3 px-4 rounded-lg">
5652
{item.label}

satgate-landing/app/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ const LandingPage = () => {
2828

2929
{/* Desktop menu */}
3030
<div className="hidden md:flex gap-6 text-sm font-medium text-gray-400">
31+
<Link href="/mint-demo" className="hover:text-white transition">Mint Demo</Link>
3132
<Link href="/protect" className="hover:text-white transition">Protect Demo</Link>
3233
<Link href="/pay" className="hover:text-white transition">Pay Demo</Link>
33-
<Link href="/mint-demo" className="hover:text-white transition">Mint Demo</Link>
3434
<Link href="/govern" className="hover:text-white transition">Enterprise</Link>
3535
<Link href="/pricing" className="hover:text-white transition">Pricing</Link>
3636
<a href="https://cloud.satgate.io/docs" target="_blank" rel="noopener noreferrer" className="hover:text-white transition">Docs</a>
@@ -57,25 +57,25 @@ const LandingPage = () => {
5757
>
5858
<div className="bg-black/95 backdrop-blur-xl border-t border-gray-800 px-4 py-4 space-y-1">
5959
<Link
60-
href="/protect"
60+
href="/mint-demo"
6161
onClick={() => setMobileMenuOpen(false)}
6262
className="block text-gray-400 hover:text-white hover:bg-gray-800/50 transition py-3 px-4 rounded-lg"
6363
>
64-
Protect Demo
64+
Mint Demo
6565
</Link>
6666
<Link
67-
href="/pay"
67+
href="/protect"
6868
onClick={() => setMobileMenuOpen(false)}
6969
className="block text-gray-400 hover:text-white hover:bg-gray-800/50 transition py-3 px-4 rounded-lg"
7070
>
71-
Pay Demo
71+
Protect Demo
7272
</Link>
7373
<Link
74-
href="/mint-demo"
74+
href="/pay"
7575
onClick={() => setMobileMenuOpen(false)}
7676
className="block text-gray-400 hover:text-white hover:bg-gray-800/50 transition py-3 px-4 rounded-lg"
7777
>
78-
Mint Demo
78+
Pay Demo
7979
</Link>
8080
<Link
8181
href="/govern"

0 commit comments

Comments
 (0)