// material-ui import { styled, useTheme } from '@mui/material/styles'; import { Button, Card, CardContent, Grid, Stack, Typography } from '@mui/material'; // project imports import AnimateButton from 'ui-component/extended/AnimateButton'; // styles const CardStyle = styled(Card)(({ theme }) => ({ background: theme.palette.mode === 'dark' ? theme.palette.dark[800] : theme.palette.warning.light, marginTop: '16px', marginBottom: '16px', overflow: 'hidden', position: 'relative', '&:after': { content: '""', position: 'absolute', width: '200px', height: '200px', border: '19px solid ', borderColor: theme.palette.mode === 'dark' ? theme.palette.warning.main : theme.palette.warning.main, borderRadius: '50%', top: '65px', right: '-150px' }, '&:before': { content: '""', position: 'absolute', width: '200px', height: '200px', border: '3px solid ', borderColor: theme.palette.mode === 'dark' ? theme.palette.warning.main : theme.palette.warning.main, borderRadius: '50%', top: '145px', right: '-70px' } })); // ==============================|| PROFILE MENU - UPGRADE PLAN CARD ||============================== // const UpgradePlanCard = () => { const theme = useTheme(); return ( Upgrade your plan 70% discount for 1 years
subscriptions.
); }; export default UpgradePlanCard;