+ {/* View mode tabs */}
+
+ {[
+ { id: 'preview' as const, label: '글 미리보기' },
+ { id: 'seo' as const, label: 'SEO 정보' },
+ { id: 'image' as const, label: '이미지 가이드' },
+ ].map((tab) => (
+
+ ))}
+
+
+ {/* Meta bar */}
+
+
+ {result.meta.charCount.toLocaleString()}자
+ {result.meta.sectionCount}개 섹션
+ 읽기 {result.meta.estimatedReadTime}
+
+
+
+
+
+
+ {/* Content based on viewMode */}
+ {viewMode === 'preview' && (
+
+ {/* Blog preview (light theme to mimic Naver Blog) */}
+
+
{result.title}
+
{result.subtitle}
+
+
+ {result.content.map((section, idx) => (
+
+
+
+ {section.heading}
+
+ {section.imageSlot && (
+
+
+ 이미지 배치 위치
+
+
+ )}
+
{section.body}
+
+ ))}
+
+ {/* Tags */}
+
+ {result.tags.map((tag) => (
+
+ #{tag}
+
+ ))}
+
+
+
+ )}
+
+ {viewMode === 'seo' && (
+
+
+
+
{result.seoTitle}
+
+
+
+
{result.seoDescription}
+
+
+
+
+ {result.tags.map((tag) => (
+
+ #{tag}
+
+ ))}
+
+
+
+
+
+ {result.content.map((section, idx) => (
+
+ H2
+ {section.heading}
+ {section.body.length}자
+
+ ))}
+
+
+
+ 모델: {result.meta.model} · 생성: {new Date(result.meta.generatedAt).toLocaleString('ko-KR')}
+
+
+ )}
+
+ {viewMode === 'image' && (
+
+ {result.imageGuides.length === 0 ? (
+
이미지 가이드가 없습니다.
+ ) : (
+
+ {result.imageGuides.map((guide, idx) => (
+
+
+
+ {idx + 1}
+
+ {guide.position}
+
+
{guide.description}
+
+
+ 검색어: {guide.searchKeyword}
+
+
+ Alt: {guide.altText}
+
+
+
+ ))}
+
+ )}
+
+ )}
+
+ {/* CTA */}
+
+
+ 이런 블로그 자동화를 우리 사업에 맞게 커스텀하고 싶다면?
+
+
+ 맞춤 자동화 상담하기
+
+
+
+