Skip to content

Commit 8fec69f

Browse files
committed
feat(web): update download links to GitHub releases page
1 parent 6591fb2 commit 8fec69f

3 files changed

Lines changed: 11 additions & 7 deletions

File tree

apps/web/src/components/billing/PricingCards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const PLANS: Plan[] = [
4040
{ text: 'Reduced platform fee', included: false },
4141
],
4242
cta: 'Get Started',
43-
href: '/docs/getting-started/installation',
43+
href: 'https://github.com/kimlimjustin/xplorer/releases/latest',
4444
},
4545
{
4646
name: 'Pro',

apps/web/src/components/landing/Cta.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ export function Cta() {
3434
<div
3535
className={`reveal ${inView ? 'visible' : ''} reveal-delay-2 mt-10 flex flex-col items-center justify-center gap-4 sm:flex-row`}
3636
>
37-
<Link
38-
href="/docs/getting-started/installation"
37+
<a
38+
href="https://github.com/kimlimjustin/xplorer/releases/latest"
39+
target="_blank"
40+
rel="noopener noreferrer"
3941
className="group inline-flex items-center gap-2 rounded-xl bg-brand-600 px-8 py-3.5 font-semibold text-white shadow-lg shadow-brand-600/25 transition-all hover:-translate-y-0.5 hover:bg-brand-700 hover:shadow-brand-600/40"
4042
>
4143
<Download className="h-5 w-5" />
4244
Download Xplorer
43-
</Link>
45+
</a>
4446
<a
4547
href="https://github.com/kimlimjustin/xplorer"
4648
target="_blank"

apps/web/src/components/landing/Hero.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,15 @@ export function Hero() {
6868
<div
6969
className={`reveal ${inView ? 'visible' : ''} reveal-delay-3 mt-10 flex flex-col items-center justify-center gap-4 sm:flex-row`}
7070
>
71-
<Link
72-
href="/docs/getting-started/installation"
71+
<a
72+
href="https://github.com/kimlimjustin/xplorer/releases/latest"
73+
target="_blank"
74+
rel="noopener noreferrer"
7375
className="pulse-glow group inline-flex items-center gap-2 rounded-xl bg-brand-600 px-8 py-3.5 font-semibold text-white shadow-lg shadow-brand-600/25 transition-all hover:-translate-y-0.5 hover:bg-brand-700 hover:shadow-brand-600/40"
7476
>
7577
Download for Free
7678
<ArrowRight className="h-4 w-4 transition-transform group-hover:translate-x-0.5" />
77-
</Link>
79+
</a>
7880
<a
7981
href="https://github.com/kimlimjustin/xplorer"
8082
target="_blank"

0 commit comments

Comments
 (0)