diff --git a/src/app/story/[storylineId]/[plotIndex]/page.tsx b/src/app/story/[storylineId]/[plotIndex]/page.tsx
index e257082b..8329d024 100644
--- a/src/app/story/[storylineId]/[plotIndex]/page.tsx
+++ b/src/app/story/[storylineId]/[plotIndex]/page.tsx
@@ -3,6 +3,7 @@ import { redirect } from "next/navigation";
import { createServerClient, type Storyline, type Plot } from "../../../../../lib/supabase";
import { truncateAddress } from "../../../../../lib/utils";
import { ViewTracker } from "../../../../components/ViewCount";
+import { CommentSection } from "../../../../components/CommentSection";
import Link from "next/link";
type Params = Promise<{ storylineId: string; plotIndex: string }>;
@@ -126,6 +127,9 @@ export default async function PlotDetailPage({ params }: { params: Params }) {
)}
+ {/* Comments */}
+
+
{/* Navigation */}