+ {[
+ { name: "OnlyFans", type: "subscription", fee: "20%", color: "from-blue-500 to-cyan-500", legal: "Adult content permitido" },
+ { name: "Patreon", type: "subscription", fee: "12%", color: "from-orange-500 to-red-500", legal: "Sin adult content real" },
+ { name: "Fansly", type: "mixed", fee: "20%", color: "from-purple-500 to-pink-500", legal: "Adult content permitido" },
+ { name: "Fanvue", type: "subscription", fee: "15%", color: "from-green-500 to-teal-500", legal: "Adult content permitido" },
+ { name: "Ko-fi", type: "tips", fee: "0%", color: "from-sky-500 to-blue-500", legal: "Sin adult content" },
+ { name: "Instagram", type: "free", fee: "0%", color: "from-pink-500 to-purple-500", legal: "Sin desnudez" },
+ ].map((p) => (
+
+
+
+
+
+ {p.name}
+ Fee: {p.fee}
+ {p.type}
+ ⚖️ {p.legal}
+
+
+
+ ))}
+
+ )}
+
+ {/* Posts */}
+ {activeTab === "posts" && (
+
+
+
+ Análisis de Influencers IA Famosos
+ Estudia los patrones de influencers IA exitosos para aplicarlos a tu contenido
+
+
+
+
+
+ setInfluencerNiche(e.target.value)} className="bg-slate-800 border-slate-700 mt-1" />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {influencers.length > 0 && (
+
+ {influencers.map((inf, i) => (
+
+
+
+
+
+
+
+
{inf.name}
+
{inf.handle}
+
+
+
+
Seguidores: {(inf.followers / 1000000).toFixed(1)}M
+
Engagement: {inf.engagement}%
+
Nicho: {inf.niche}
+ {inf.petCompanion &&
{inf.petType}}
+
+
+
Lecciones:
+
+ {inf.keyLessons.slice(0, 2).map((l, j) => (
+ - • {l}
+ ))}
+
+
+
+
+ ))}
+
+ )}
+
+ {characterConcept && (
+
+
+ Concepto de Personaje Sugerido
+
+
+
+
+
Personaje
+
+ {characterConcept.character && (
+ <>
+
Nombre: {String(characterConcept.character.name || "")}
+
Personalidad: {String(characterConcept.character.personality || "")}
+
Historia: {String(characterConcept.character.backstory || "")}
+ >
+ )}
+
+
+
+
Estilo Visual
+
+ {characterConcept.visualStyle && (
+ <>
+
Estética: {String(characterConcept.visualStyle.aesthetic || "")}
+
Colores: {Array.isArray(characterConcept.visualStyle.colors) ? characterConcept.visualStyle.colors.join(", ") : ""}
+ >
+ )}
+
+ {Array.isArray(characterConcept.hashtags) && characterConcept.hashtags.length > 0 && (
+
+ {characterConcept.hashtags.slice(0, 10).map((tag: string, i: number) => (
+ {tag}
+ ))}
+
+ )}
+
+
+
+
+ )}
+
+ )}
+
+ {/* Pets */}
+ {activeTab === "pets" && (
+
+
+
+
+
+
+
+
+
+ {/* Tendencias Actuales */}
+
+ {trends.slice(0, 8).map((t, i) => (
+
+
+
+ {String(t.platform || "")}
+ 30 ? "text-red-400" : "text-orange-400"}`} />
+
+ {String(t.name)}
+ +{Number(t.growth).toFixed(1)}%
+ {String(t.category || "")}
+
+
+ ))}
+
+
+ {/* Estrategias Virales */}
+ {viralStrategies.length > 0 && (
+
+ Estrategias Virales
+
+
+ {viralStrategies.slice(0, 4).map((s, i) => (
+
+
+
{String(s.name)}
+
{String(s.successRate)}%
+
+
{String(s.description)}
+
+ {Array.isArray(s.platforms) && s.platforms.slice(0, 3).map((p: string, j: number) => (
+ {p}
+ ))}
+
+
+ ))}
+
+
+
+ )}
+
+ {/* Ideas de Contenido */}
+ {contentIdeas.length > 0 && (
+
+ Ideas de Contenido Viral
+
+
+ {contentIdeas.slice(0, 5).map((idea, i) => (
+
+
+
+
{String(idea.title)}
+
{String(idea.description)}
+ {idea.hook &&
Hook: "{String(idea.hook)}"
}
+
+
+
{String(idea.format)}
+ {idea.viralScore &&
Score: {String(idea.viralScore)}
}
+
+
+
+ ))}
+
+
+
+ )}
+
+ {/* Análisis de Tendencias */}
+ {trendAnalysis && (
+
+
+ Plan para Viralizar
+
+
+
+
+
Tendencias Emergentes
+
+ {Array.isArray(trendAnalysis.emergingTrends) && trendAnalysis.emergingTrends.slice(0, 3).map((t: Record
, i: number) => (
+
+
{String(t.name)}
+
Potencial: {String(t.potential)}
+
+ ))}
+
+
+
+
Recomendaciones
+
+ {Array.isArray(trendAnalysis.recommendations) && trendAnalysis.recommendations.slice(0, 4).map((r: string, i: number) => (
+
• {r}
+ ))}
+
+ {trendAnalysis.predictedViralPotential && (
+
+
Potencial Viral Estimado:
+
{String(trendAnalysis.predictedViralPotential)}%
+
+ )}
+
+
+
+
+ )}
+
+ )}
+
+ {/* Content */}
+ {activeTab === "content" && (
+