diff --git a/src/app/story/[storylineId]/[plotIndex]/page.tsx b/src/app/story/[storylineId]/[plotIndex]/page.tsx
index 908c413e..ba25a171 100644
--- a/src/app/story/[storylineId]/[plotIndex]/page.tsx
+++ b/src/app/story/[storylineId]/[plotIndex]/page.tsx
@@ -1,8 +1,10 @@
import { type Metadata } from "next";
+import { Suspense } from "react";
import { redirect } from "next/navigation";
import { createServerClient, type Storyline, type Plot } from "../../../../../lib/supabase";
import { STORY_FACTORY } from "../../../../../lib/contracts/constants";
import { truncateAddress } from "../../../../../lib/utils";
+import { WriterIdentity } from "../../../../components/WriterIdentity";
import { ViewTracker } from "../../../../components/ViewCount";
import { CommentSection } from "../../../../components/CommentSection";
import Link from "next/link";
@@ -104,7 +106,12 @@ export default async function PlotDetailPage({ params }: { params: Params }) {
{chapterTitle}
- by {truncateAddress(sl.writer_address)}
+
+ by{" "}
+ {truncateAddress(sl.writer_address)}}>
+
+
+
{p.block_timestamp && (