+ {/* Header */}
+
+
+
+ SEO & Sosyal Medya
+
+ {project.seoScore != null && (
+
+
+
+
+ {project.seoScore}
+
+
+
SEO
Skoru
+
+ )}
+
+
+ {/* ─── Başlık Yönetimi ─── */}
+
+
+
+ 📌 SEO Başlıkları
+
+
+
+
+ {/* Mevcut başlık */}
+
+
+
+ Aktif Başlık
+
+
{project.seoTitle || project.title}
+
+
+ {/* Alternatif başlıklar */}
+ {project.seoTitleAlts && project.seoTitleAlts.length > 0 && (
+
+ {project.seoTitleAlts.map((alt, i) => (
+
+ ))}
+
+ )}
+
+
+ {/* ─── SEO Keywords ─── */}
+ {project.seoKeywords && project.seoKeywords.length > 0 && (
+
+
+
+ Anahtar Kelimeler ({project.seoKeywords.length})
+
+
+ {project.seoKeywords.map((kw, i) => {
+ const colors = [
+ 'bg-blue-500/15 text-blue-300 border-blue-500/20',
+ 'bg-emerald-500/15 text-emerald-300 border-emerald-500/20',
+ 'bg-amber-500/15 text-amber-300 border-amber-500/20',
+ 'bg-violet-500/15 text-violet-300 border-violet-500/20',
+ 'bg-rose-500/15 text-rose-300 border-rose-500/20',
+ 'bg-cyan-500/15 text-cyan-300 border-cyan-500/20',
+ ];
+ return (
+
+
+ {kw}
+
+ );
+ })}
+
+
+ )}
+
+ {/* ─── Hashtag'ler ─── */}
+ {project.scriptJson?.seo?.hashtags && project.scriptJson.seo.hashtags.length > 0 && (
+
+
+
+
+ Hashtag'ler
+
+
+
+
+ {project.scriptJson.seo.hashtags.map((tag: string, i: number) => (
+
+ #{tag}
+
+ ))}
+ {/* Trending hashtag'ler */}
+ {project.scriptJson.seo.trendingHashtags?.map((tag: string, i: number) => (
+
+
+ #{tag}
+
+ ))}
+
+
+ )}
+
+ {/* ─── Sosyal Medya Caption'ları ─── */}
+ {project.socialContent && (
+
+
+
+ Sosyal Medya İçerikleri
+
+
+ {/* Tab navigasyonu */}
+
+ {[
+ { key: 'youtube' as const, label: 'YouTube', icon: YouTubeIcon, color: 'text-red-400' },
+ { key: 'tiktok' as const, label: 'TikTok', icon: Film, color: 'text-cyan-400' },
+ { key: 'instagram' as const, label: 'Instagram', icon: InstagramIcon, color: 'text-pink-400' },
+ { key: 'twitter' as const, label: 'X', icon: XIcon, color: 'text-white' },
+ ].map((tab) => (
+
+ ))}
+
+
+ {/* Caption içeriği */}
+
+ {activeCaptionTab === 'youtube' && (
+
+ {project.socialContent.youtubeTitle && (
+
+
+ Başlık
+
+
+
{project.socialContent.youtubeTitle}
+
+ )}
+ {project.socialContent.youtubeDescription && (
+
+
+ Açıklama
+
+
+
{project.socialContent.youtubeDescription}
+
+ )}
+
+ )}
+
+ {activeCaptionTab === 'tiktok' && project.socialContent.tiktokCaption && (
+
+
+ TikTok Caption
+
+
+
{project.socialContent.tiktokCaption}
+
+ )}
+
+ {activeCaptionTab === 'instagram' && project.socialContent.instagramCaption && (
+
+
+ Instagram Caption
+
+
+
{project.socialContent.instagramCaption}
+
+ )}
+
+ {activeCaptionTab === 'twitter' && project.socialContent.twitterText && (
+
+
+ X (Twitter) Paylaşımı
+
+
+
{project.socialContent.twitterText}
+
+ )}
+
+
+ )}
+
+ {/* ─── SEO Açıklama ─── */}
+ {project.seoDescription && (
+
+
+ Meta Description
+
+
+
{project.seoDescription}
+
+ )}
+
+