import { ChevronLeft, MoreHorizontal, X } from "lucide-react" import type { PreviewProps } from "../../types" import { createTopicSectionsFromImages } from "./helpers" export function TopicPagePreview({ content }: PreviewProps) { const topicSections = (content.topicSections && content.topicSections.length > 0) ? content.topicSections : createTopicSectionsFromImages(content.imageUrls) return (
9:41

{content.topicNavTitle || `${content.sourceCarName || "车型"}详情`}

{content.topicHeroTitle || "先锋设计"}

{topicSections.map((section) => (
{section.imageUrl ? ( {section.title} ) : (
请添加模块图片
)}

{section.title}

))}
) }