diff --git a/src/app/portfolio/[uid]/page.tsx b/src/app/portfolio/[uid]/page.tsx index b154941..00115a6 100644 --- a/src/app/portfolio/[uid]/page.tsx +++ b/src/app/portfolio/[uid]/page.tsx @@ -23,6 +23,7 @@ import QuestionMarkIcon from "@/components/icon/questionMark"; import { NoDataAlert } from "@/components/alert/noData/alert"; import { error } from "console"; import { UnAuthorizedAlert } from "@/components/alert/unauthorized/alert"; +import Link from "next/link"; export default async function Portfolio({ params }: { params: { uid: string } }) { const supabase = createSupabaseClient(); @@ -30,8 +31,21 @@ export default async function Portfolio({ params }: { params: { uid: string } }) const hasInvestments = await checkForInvest(supabase, params.uid); if (!hasInvestments) { return ( -
+ It looks like you haven't added any data yet. Please head over to the investment section to get + started. +
+