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

View File

@@ -72,23 +72,11 @@ 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}>
<ListItemIcon
sx={{
minWidth: "36px",
}}
>
<CheckmarkCircleFilled color="primary" />
</ListItemIcon>
<ListItemText <ListItemText
slotProps={{ slotProps={{
primary: { primary: {
@@ -97,10 +85,21 @@ const ProDialog = ({ open, onClose }: ProDialogProps) => {
}, },
}} }}
> >
{t(`pro.${feature}`)} Pro我骂谁
</ListItemText>
</ListItem>
<ListItem>
<ListItemText
slotProps={{
primary: {
sx: {},
variant: "body1",
},
}}
>
</ListItemText> </ListItemText>
</ListItem> </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>
); );