feat: image generation overhaul (model-aware text, dim clamping, \.30 pricing), event-driven dashboard cache invalidation, SEO insights (AI visibility, GSC, keyword gap), YouTube OAuth/publish, blog writer & content planning improvements, scheduler monitoring updates

This commit is contained in:
ajaysi
2026-05-30 07:58:22 +05:30
parent aaf94049da
commit 64f1f88cdd
129 changed files with 8796 additions and 8755 deletions

View File

@@ -45,6 +45,7 @@ import { llmInsightsGenerator } from '../../api/llmInsightsGenerator';
import { EnterpriseAuditResults } from './components/EnterpriseAuditResults';
import { GSCAnalysisResults } from './components/GSCAnalysisResults';
import { ActionableInsightsDisplay } from './components/ActionableInsightsDisplay';
import { AIVisibilitySection } from './components/AIVisibilitySection';
interface AnalysisStep {
label: string;
@@ -485,6 +486,7 @@ export const SEOAnalysisController: React.FC = () => {
{auditResult && <Tab label="Enterprise Audit" />}
{gscResult && <Tab label="GSC Analysis" />}
{insights.length > 0 && <Tab label="AI Insights" />}
<Tab label="AI Overview Insights" />
</Tabs>
</Paper>
@@ -525,6 +527,20 @@ export const SEOAnalysisController: React.FC = () => {
)}
</TabPanel>
)}
{/* AI Overview Insights — always last tab */}
{(() => {
const aioIndex = (auditResult ? 1 : 0) + (gscResult ? 1 : 0) + (insights.length > 0 ? 1 : 0);
return (
<TabPanel value={tabValue} index={aioIndex}>
<AIVisibilitySection
gscConnected={!!gscResult}
siteUrl={websiteUrl}
onConnectGSC={() => setActiveStep(0)}
/>
</TabPanel>
);
})()}
</Box>
)}
</Grid>