This commit is contained in:
2025-10-24 22:04:48 +08:00
parent 1ffe6a8a52
commit 7519a81c88

View File

@@ -72,35 +72,34 @@ const ProDialog = ({ open, onClose }: ProDialogProps) => {
> >
<DialogContent> <DialogContent>
<Typography variant="body1" color="text.secondary"> <Typography variant="body1" color="text.secondary">
{t("pro.description")} Cloudreve的sb pro玩意
</Typography>
<Typography variant="body1" fontWeight={600} sx={{ mt: 2 }}>
{t("pro.proInclude")}
</Typography> </Typography>
<List dense> <List dense>
{features.map((feature) => ( <ListItem>
<ListItem key={feature}> <ListItemText
<ListItemIcon slotProps={{
sx={{ primary: {
minWidth: "36px", sx: {},
}} variant: "body1",
> },
<CheckmarkCircleFilled color="primary" /> }}
</ListItemIcon> >
<ListItemText Pro我骂谁
slotProps={{ </ListItemText>
primary: { </ListItem>
sx: {}, <ListItem>
variant: "body1", <ListItemText
}, slotProps={{
}} primary: {
> sx: {},
{t(`pro.${feature}`)} variant: "body1",
</ListItemText> },
</ListItem> }}
))} >
</ListItemText>
</ListItem>
</List> </List>
{showPromotion && ( {showPromotion && (
<Alert <Alert
@@ -128,11 +127,8 @@ const ProDialog = ({ open, onClose }: ProDialogProps) => {
}} }}
> >
<Button variant="outlined" color="primary" onClick={onClose}> <Button variant="outlined" color="primary" onClick={onClose}>
{t("pro.later")}
</Button> </Button>
<StyledButton onClick={openMore} variant="contained" color="primary">
{t("pro.learnMore")}
</StyledButton>
</StyledDialogActions> </StyledDialogActions>
</DraggableDialog> </DraggableDialog>
); );