+ {/* Preview title */}
+
+ {watchedValues.title || "Untitled Work"}
+
+
+ {/* Preview subtitle */}
+ {watchedValues.subtitle && (
+
+ {watchedValues.subtitle}
+
+ )}
+
+ {/* Author and metadata */}
+
+
+ by {authors.find(a => a.id.toString() === watchedValues.authorId)?.name || "Unknown Author"}
+
+ {watchedValues.publicationYear && (
+
+ • {watchedValues.publicationYear}
+
+ )}
+
+
+
+
+ {/* Content preview */}
+
+ {workContent ? (
+
+ ) : (
+
+ No content to preview. Add content in the "Content" tab.
+
+ )}
+
+
+