diff --git a/components/editor/comic-canvas.tsx b/components/editor/comic-canvas.tsx index ccd2956..54de1d4 100644 --- a/components/editor/comic-canvas.tsx +++ b/components/editor/comic-canvas.tsx @@ -1,19 +1,19 @@ -"use client" +"use client"; -import { RefreshCw, Download } from "lucide-react" -import { Button } from "@/components/ui/button" +import { RefreshCw, Download } from "lucide-react"; +import { Button } from "@/components/ui/button"; interface PageData { - id: number - title: string - image: string - prompt: string - characterUpload?: string - style: string + id: number; + title: string; + image: string; + prompt: string; + characterUpload?: string; + style: string; } interface ComicCanvasProps { - page: PageData + page: PageData; } export function ComicCanvas({ page }: ComicCanvasProps) { @@ -23,8 +23,11 @@ export function ComicCanvas({ page }: ComicCanvasProps) {
-
-
+
+
{/* Page label */} -
+
Page {page.id}
-
Page {page.id}
+ {/*
Page {page.id}
*/} {/* Mobile action buttons */}
@@ -65,5 +68,5 @@ export function ComicCanvas({ page }: ComicCanvasProps) {
- ) + ); } diff --git a/components/editor/page-sidebar.tsx b/components/editor/page-sidebar.tsx index 3359218..12d9f18 100644 --- a/components/editor/page-sidebar.tsx +++ b/components/editor/page-sidebar.tsx @@ -1,7 +1,8 @@ "use client" -import { Plus, Loader2, Key, User } from "lucide-react" +import { Plus, Loader2, Key } from "lucide-react" import { Button } from "@/components/ui/button" +import { UserButton } from "@clerk/nextjs" interface PageData { id: number @@ -75,13 +76,15 @@ export function PageSidebar({ - {/* Avatar Circle - placeholder for future Clerk integration */} - +
+ +
)