story writer backend migration complete, Blog writer SEO and story writer backend migration complete, Blog writer SEO and story writer frontend migration complete

This commit is contained in:
ajaysi
2025-11-13 16:14:26 +05:30
parent 7191c7e7f0
commit 3b9356e2c8
124 changed files with 20055 additions and 1208 deletions

View File

@@ -0,0 +1,43 @@
import React from 'react';
import { Grid, Typography, Box, FormControlLabel, Checkbox } from '@mui/material';
import { SectionProps } from './types';
export const FeatureCheckboxesSection: React.FC<SectionProps> = ({ state }) => {
return (
<Grid item xs={12}>
<Typography variant="subtitle2" sx={{ mb: 2, fontWeight: 600 }}>
Story Features
</Typography>
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
<FormControlLabel
control={
<Checkbox
checked={state.enableExplainer}
onChange={(e) => state.setEnableExplainer(e.target.checked)}
/>
}
label="Explainer"
/>
<FormControlLabel
control={
<Checkbox
checked={state.enableIllustration}
onChange={(e) => state.setEnableIllustration(e.target.checked)}
/>
}
label="Illustration"
/>
<FormControlLabel
control={
<Checkbox
checked={state.enableVideoNarration}
onChange={(e) => state.setEnableVideoNarration(e.target.checked)}
/>
}
label="Story Video & Narration"
/>
</Box>
</Grid>
);
};