File tree 1 file changed +15
-1
lines changed
apps/dashboard/src/app/(app)/team/[team_slug]/(team)
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,13 @@ import { type Project, getProjects } from "@/api/projects";
3
3
import { getTeamBySlug } from "@/api/team" ;
4
4
import { getThirdwebClient } from "@/constants/thirdweb.server" ;
5
5
import { subDays } from "date-fns" ;
6
+ import { CircleAlertIcon } from "lucide-react" ;
6
7
import { redirect } from "next/navigation" ;
8
+ import {
9
+ Alert ,
10
+ AlertDescription ,
11
+ AlertTitle ,
12
+ } from "../../../../../@/components/ui/alert" ;
7
13
import { getAuthToken } from "../../../api/lib/getAuthToken" ;
8
14
import { loginRedirect } from "../../../login/loginRedirect" ;
9
15
import { InviteTeamMembersButton } from "./_components/invite-team-members-button" ;
@@ -50,12 +56,20 @@ export default async function Page(props: {
50
56
</ div >
51
57
</ div >
52
58
53
- < div className = "container flex grow flex-col pt-8 pb-20" >
59
+ < div className = "container flex grow flex-col gap-6 pt-8 pb-20" >
54
60
< TeamProjectsPage
55
61
projects = { projectsWithTotalWallets }
56
62
team = { team }
57
63
client = { client }
58
64
/>
65
+ < Alert variant = { "info" } >
66
+ < CircleAlertIcon className = "h-4 w-4" />
67
+ < AlertTitle > Looking for Engines?</ AlertTitle >
68
+ < AlertDescription >
69
+ Engines have moved inside projects. Open or create a project to
70
+ manage your engines.
71
+ </ AlertDescription >
72
+ </ Alert >
59
73
</ div >
60
74
</ div >
61
75
) ;
You can’t perform that action at this time.
0 commit comments