diff --git a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page-ui.client.tsx b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page-ui.client.tsx index 970c8ae98d4..3a693f15c54 100644 --- a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page-ui.client.tsx +++ b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page-ui.client.tsx @@ -3,7 +3,7 @@ import { OrbitIcon } from "lucide-react"; import Link from "next/link"; import { ShareButton } from "./share-button.client"; -export function NebulaWaitListPageUI() { +export function NebulaWaitListPageUI(props: { teamId: string }) { return (
{/* Header */} @@ -22,7 +22,15 @@ export function NebulaWaitListPageUI() { } + footer={ +
+ +

+ Share this invite link and get moved up the list when your + friends sign up! +

+
+ } />
@@ -82,7 +90,7 @@ function CenteredCard(props: { {props.description}

-
+
{props.footer}
diff --git a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page.tsx b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page.tsx index 19b7ba6e4f7..faedc079f7d 100644 --- a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page.tsx +++ b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist-page.tsx @@ -39,7 +39,7 @@ export async function NebulaWaitListPage(props: { } } - return ; + return ; } function UnexpectedErrorPage(props: { diff --git a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist.stories.tsx b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist.stories.tsx index a007238a06d..f15abed772a 100644 --- a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist.stories.tsx +++ b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/nebula-waitlist.stories.tsx @@ -29,5 +29,5 @@ export const Mobile: Story = { }; function Story() { - return ; + return ; } diff --git a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/share-button.client.tsx b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/share-button.client.tsx index 33001a1c19b..a5ef6a71ac5 100644 --- a/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/share-button.client.tsx +++ b/apps/dashboard/src/app/team/[team_slug]/[project_slug]/nebula/components/share-button.client.tsx @@ -5,16 +5,21 @@ import { ToolTipLabel } from "@/components/ui/tooltip"; import { CheckIcon, ShareIcon } from "lucide-react"; import { useState } from "react"; -export function ShareButton() { +export function ShareButton(props: { + teamId: string; +}) { const [isCopied, setIsCopied] = useState(false); return ( - +