Research Wizard and CopilotKit mitigation review

This commit is contained in:
ajaysi
2025-11-04 08:11:57 +05:30
parent e69107b07c
commit 55087c4f37
27 changed files with 2167 additions and 277 deletions

View File

@@ -13,6 +13,7 @@ interface HeaderBarProps {
hasContent?: boolean;
contentConfirmed?: boolean;
hasSEOAnalysis?: boolean;
seoRecommendationsApplied?: boolean;
hasSEOMetadata?: boolean;
}
@@ -28,6 +29,7 @@ export const HeaderBar: React.FC<HeaderBarProps> = ({
hasContent = false,
contentConfirmed = false,
hasSEOAnalysis = false,
seoRecommendationsApplied = false,
hasSEOMetadata = false,
}) => {
return (
@@ -61,6 +63,7 @@ export const HeaderBar: React.FC<HeaderBarProps> = ({
hasContent={hasContent}
contentConfirmed={contentConfirmed}
hasSEOAnalysis={hasSEOAnalysis}
seoRecommendationsApplied={seoRecommendationsApplied}
hasSEOMetadata={hasSEOMetadata}
/>
</div>