Skip to content

Commit 0c196a3

Browse files
committed
Merge remote-tracking branch 'origin/main' into ph/teamsEngineRoutes
2 parents b414118 + d98c133 commit 0c196a3

File tree

18 files changed

+84
-523
lines changed

18 files changed

+84
-523
lines changed

.changeset/gold-pumpkins-poke.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/metal-cows-hear.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/plenty-dragons-carry.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tall-pots-live.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

.changeset/tame-walls-live.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/dashboard/framer-rewrites.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ module.exports = [
1717
"/solutions/gaming",
1818
"/solutions/consumer-apps",
1919
"/solutions/defi",
20+
"/solutions/ecosystem",
2021
// -- campaigns --
2122
"/unlimited-wallets",
2223
];

apps/dashboard/redirects.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,12 @@ async function redirects() {
265265
destination: "/account-abstraction",
266266
permanent: false,
267267
},
268+
// redirect /solutions/chains to /solutions/ecosystem
269+
{
270+
source: "/solutions/chains",
271+
destination: "/solutions/ecosystem",
272+
permanent: false,
273+
},
268274
...legacyDashboardToTeamRedirects,
269275
];
270276
}

apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page-ui.client.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { OrbitIcon } from "lucide-react";
33
import Link from "next/link";
44
import { ShareButton } from "./share-button.client";
55

6-
export function NebulaWaitListPageUI() {
6+
export function NebulaWaitListPageUI(props: { teamId: string }) {
77
return (
88
<div className="flex grow flex-col">
99
{/* Header */}
@@ -22,7 +22,15 @@ export function NebulaWaitListPageUI() {
2222
<CenteredCard
2323
title="You're on the waitlist"
2424
description="You should receive access to Nebula soon!"
25-
footer={<ShareButton />}
25+
footer={
26+
<div className="flex flex-col items-center gap-3">
27+
<ShareButton teamId={props.teamId} />
28+
<p className="text-balance text-center text-muted-foreground">
29+
Share this invite link and get moved up the list when your
30+
friends sign up!
31+
</p>
32+
</div>
33+
}
2634
/>
2735
</div>
2836
</div>
@@ -82,7 +90,7 @@ function CenteredCard(props: {
8290
{props.description}
8391
</p>
8492

85-
<div className="h-6" />
93+
<div className="h-10" />
8694

8795
{props.footer}
8896
</div>

apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export async function NebulaWaitListPage(props: {
3939
}
4040
}
4141

42-
return <NebulaWaitListPageUI />;
42+
return <NebulaWaitListPageUI teamId={team.id} />;
4343
}
4444

4545
function UnexpectedErrorPage(props: {

apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ export const Mobile: Story = {
2929
};
3030

3131
function Story() {
32-
return <NebulaWaitListPageUI />;
32+
return <NebulaWaitListPageUI teamId="foo" />;
3333
}

0 commit comments

Comments
 (0)