Skip to content

Commit 634b62e

Browse files
authored
fix: add project selection link to assistant page (supabase#30799)
1 parent f6f834e commit 634b62e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

apps/www/pages/assistant.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const welcomeMessages = [
5353
</g>
5454
</svg>
5555
<p>
56-
Welcome Product Hunter! 👋 Thanks for checking out the Supabase assistant. Let me show you
56+
Welcome Product Hunter! 👋 Thanks for checking out the Supabase Assistant. Let me show you
5757
what I can do!
5858
</p>
5959
</div>
@@ -677,17 +677,19 @@ function Assistant() {
677677
<h1 className="text-4xl sm:text-5xl sm:leading-none">Chat with Postgres</h1>
678678
<p className="p text-lg !m-0">
679679
Generate, run and debug queries, chart your data, create functions, policies and
680-
more. The assistant is here to help.
680+
more. The Assistant is here to help.
681681
</p>
682682
<div className="min-h-12">
683683
{!isUserLoading &&
684684
(isLoggedIn ? (
685685
<Button type="primary" size="medium" asChild>
686-
<Link href="/dashboard/projects">Dashboard</Link>
686+
<Link href="/dashboard/project/_">Dashboard</Link>
687687
</Button>
688688
) : (
689689
<Button type="primary" size="medium" asChild>
690-
<Link href="https://supabase.com/dashboard">Start your project</Link>
690+
<Link href="https://supabase.com/dashboard/project/_">
691+
Start your project
692+
</Link>
691693
</Button>
692694
))}
693695
</div>

0 commit comments

Comments
 (0)