Skip to content

Commit eca7bb6

Browse files
authored
Merge branch 'main' into release/hub
2 parents 44292da + b24790f commit eca7bb6

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

.changeset/pretty-mugs-heal.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"status.app": patch
3+
---
4+
5+
reference new mobile app

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
concurrency: ${{ github.workflow }}-${{ github.ref }}
99

1010
env:
11-
NEXT_PUBLIC_GHOST_API_URL: ''
12-
NEXT_PUBLIC_GHOST_API_KEY: ''
1311
INFURA_API_KEY: ''
1412

1513
jobs:

apps/status.app/src/app/(website)/_components/download-mobile-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const DownloadMobileButton = (props: Props) => {
8282
<LatestVersionTag platform="mobile" />
8383
</div>
8484
<Dialog.Title className="mb-2 max-w-[381px] text-40 font-bold">
85-
Download Status for Mobile
85+
Download Legacy Status mobile app
8686
</Dialog.Title>
8787
<Dialog.Description className="mb-6 max-w-[468px] pr-12 text-19 font-regular">
8888
Available for iOS or Android.

apps/status.app/src/app/(website)/apps/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default function AppsPage() {
9494
/>
9595
<PlatformSection
9696
platform="mobile"
97-
title="Status for mobile"
97+
title="Legacy Status mobile"
9898
showScribble
9999
screenshots={[
100100
{

apps/status.app/src/app/(website)/page.tsx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,24 @@ export default async function HomePage() {
8888
>
8989
<div className="flex flex-col text-left">
9090
<h3 className="text-19 font-600 text-white-100">
91-
Try Status Portfolio Wallet (Beta)
91+
Try new Status mobile app
9292
</h3>
9393
<p className="text-15 font-400 text-white-100">
94-
Easily view and manage your crypto portfolio in real time
95-
&mdash; Beta crypto wallet and Web3 portfolio tracker in one.
94+
Built from a single codebase for unified experience across
95+
Mobile and Desktop. One app, one experience — connecting the
96+
Status community across devices
9697
</p>
9798
</div>
9899
<div className="flex items-center">
99-
<DownloadExtensionButton source="homepage-hero" />
100+
<Button
101+
size="32"
102+
variant="outline"
103+
href="https://status.app/blog/introducing-unified-status-mobile-app"
104+
target="_blank"
105+
rel="noopener noreferrer"
106+
>
107+
Learn & try
108+
</Button>
100109
</div>
101110
</div>
102111
<Image

apps/status.app/src/config/routes.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ export const ROUTES = {
3939
Apps: [
4040
{ name: 'Browser', href: '/#browser' },
4141
{ name: 'Desktop', href: '/apps#desktop' },
42-
{ name: 'Mobile', href: '/apps#mobile' },
42+
{ name: 'Legacy mobile', href: '/apps#mobile' },
43+
{
44+
name: 'Mobile',
45+
href: 'https://status.app/blog/introducing-unified-status-mobile-app',
46+
},
4347
],
4448
Ecosystem: [
4549
{ name: 'Keycard', href: '/keycard' },

0 commit comments

Comments
 (0)