-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb6897e
commit b193840
Showing
8 changed files
with
67 additions
and
77 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/app/(dashboard)/[organizationSlug]/dashboard/billing/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Page() { | ||
return ( | ||
<div className="max-w-screen-2xl m-auto space-y-12"> | ||
<h2 className="text-3xl font-bold">Billing</h2> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
src/app/(dashboard)/[organizationSlug]/dashboard/plan/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
export default function Page() { | ||
return <div>hello plans</div>; | ||
return ( | ||
<div className="max-w-screen-2xl m-auto space-y-12"> | ||
<h2 className="text-3xl font-bold">Plans</h2> | ||
</div> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { Avatar, AvatarFallback, AvatarImage } from "@/ui/avatar"; | ||
|
||
export function RecentSales() { | ||
export function RecentClicks() { | ||
return ( | ||
<div className="space-y-8"> | ||
<div className="flex items-center"> | ||
|
@@ -14,18 +14,18 @@ export function RecentSales() { | |
[email protected] | ||
</p> | ||
</div> | ||
<div className="ml-auto font-medium">+$1,999.00</div> | ||
<div className="ml-auto font-medium">Hub2</div> | ||
</div> | ||
<div className="flex items-center"> | ||
<Avatar className="flex h-9 w-9 items-center justify-center space-y-0 border"> | ||
<Avatar className="flex h-9 w-9"> | ||
<AvatarImage src="/logo/hubone_logo.svg" alt="Avatar" /> | ||
<AvatarFallback>JL</AvatarFallback> | ||
</Avatar> | ||
<div className="ml-4 space-y-1"> | ||
<p className="text-sm font-medium leading-none">Jackson Lee</p> | ||
<p className="text-sm text-muted-foreground">[email protected]</p> | ||
</div> | ||
<div className="ml-auto font-medium">+$39.00</div> | ||
<div className="ml-auto font-medium">Hub1</div> | ||
</div> | ||
<div className="flex items-center"> | ||
<Avatar className="h-9 w-9"> | ||
|
@@ -38,7 +38,7 @@ export function RecentSales() { | |
[email protected] | ||
</p> | ||
</div> | ||
<div className="ml-auto font-medium">+$299.00</div> | ||
<div className="ml-auto font-medium">Hub1</div> | ||
</div> | ||
<div className="flex items-center"> | ||
<Avatar className="h-9 w-9"> | ||
|
@@ -49,7 +49,7 @@ export function RecentSales() { | |
<p className="text-sm font-medium leading-none">William Kim</p> | ||
<p className="text-sm text-muted-foreground">[email protected]</p> | ||
</div> | ||
<div className="ml-auto font-medium">+$99.00</div> | ||
<div className="ml-auto font-medium">Hub3</div> | ||
</div> | ||
<div className="flex items-center"> | ||
<Avatar className="h-9 w-9"> | ||
|
@@ -60,7 +60,7 @@ export function RecentSales() { | |
<p className="text-sm font-medium leading-none">Sofia Davis</p> | ||
<p className="text-sm text-muted-foreground">[email protected]</p> | ||
</div> | ||
<div className="ml-auto font-medium">+$39.00</div> | ||
<div className="ml-auto font-medium">Hub1</div> | ||
</div> | ||
</div> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters