diff --git a/src/app/chain/page.tsx b/src/app/chain/page.tsx index df2c72bf..c28db283 100644 --- a/src/app/chain/page.tsx +++ b/src/app/chain/page.tsx @@ -56,7 +56,7 @@ export default function ChainPlotPage() { if (!isConnected) { return ( -
+

Connect your wallet to chain a plot.

@@ -66,7 +66,7 @@ export default function ChainPlotPage() { if (state === "published") { return ( -
+

Plot chained!

{storylineId && ( diff --git a/src/app/create/page.tsx b/src/app/create/page.tsx index 7158cd0b..1a7f6870 100644 --- a/src/app/create/page.tsx +++ b/src/app/create/page.tsx @@ -38,7 +38,7 @@ export default function CreateStorylinePage() { if (!isConnected) { return ( -
+

Connect your wallet to create a storyline.

@@ -48,7 +48,7 @@ export default function CreateStorylinePage() { if (state === "published") { return ( -
+

Storyline created!

+

Connect your wallet to view your dashboard.

diff --git a/src/app/dashboard/writer/page.tsx b/src/app/dashboard/writer/page.tsx index dfa0b45b..c14a1c99 100644 --- a/src/app/dashboard/writer/page.tsx +++ b/src/app/dashboard/writer/page.tsx @@ -35,7 +35,7 @@ export default function WriterDashboard() { if (!isConnected) { return ( -
+

Connect your wallet to view your dashboard.

diff --git a/src/app/discover/page.tsx b/src/app/discover/page.tsx index bab6d5a7..aa7696fb 100644 --- a/src/app/discover/page.tsx +++ b/src/app/discover/page.tsx @@ -21,7 +21,7 @@ export default async function DiscoverPage({ const supabase = createServerClient(); if (!supabase) { return ( -
+

Database unavailable

); diff --git a/src/app/story/[storylineId]/page.tsx b/src/app/story/[storylineId]/page.tsx index 92c394b4..8209a710 100644 --- a/src/app/story/[storylineId]/page.tsx +++ b/src/app/story/[storylineId]/page.tsx @@ -189,7 +189,7 @@ function PlotEntry({ plot }: { plot: Plot }) { function NotFound({ message }: { message: string }) { return ( -
+

{message}

);