chore: push all remaining changes

- Blog writer enhancements and bug fixes
- Wix integration improvements
- Frontend UI updates
- GSC dashboard docs cleanup
- Image studio assets
- LinkedIn requirements file
- Various dependency updates
This commit is contained in:
ajaysi
2026-06-12 20:32:03 +05:30
parent 63a0df2536
commit d90d441019
78 changed files with 3963 additions and 2899 deletions

View File

@@ -14,6 +14,7 @@ interface BlogWriterLandingSectionProps {
startResearchRef?: React.MutableRefObject<((keywords: string, blogLength?: string) => Promise<any>) | null>;
restoreAttempted?: boolean;
onBrainstormResult?: (result: import('../../../api/gscBrainstorm').BrainstormResult) => void;
initialKeywords?: string;
}
const VALID_PHASES = ['research', 'outline', 'content', 'seo', 'publish'];
@@ -29,6 +30,7 @@ export const BlogWriterLandingSection: React.FC<BlogWriterLandingSectionProps> =
startResearchRef,
restoreAttempted = false,
onBrainstormResult,
initialKeywords,
}) => {
if (!research) {
if (currentPhase === 'research') {
@@ -39,6 +41,7 @@ export const BlogWriterLandingSection: React.FC<BlogWriterLandingSectionProps> =
blogLengthRef={blogLengthRef}
researchRef={startResearchRef}
onBrainstormResult={onBrainstormResult}
initialKeywords={initialKeywords}
/>
);
}