// ** React Imports import { useState } from 'react' // ** Next Import import Link from 'next/link' // ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import Avatar from '@mui/material/Avatar' import Button from '@mui/material/Button' import TextField from '@mui/material/TextField' import Typography from '@mui/material/Typography' import CardHeader from '@mui/material/CardHeader' import CardContent from '@mui/material/CardContent' // ** Icon Imports import Icon from 'src/@core/components/icon' // ** Custom Components Imports import OptionsMenu from 'src/@core/components/option-menu' // ** Hooks Imports import useBgColor from 'src/@core/hooks/useBgColor' import Image from 'next/image' const CardPlanUpgrade = () => { // ** States const [cvc1, setCvc1] = useState('') const [cvc2, setCvc2] = useState('') // ** Hook const bgColors = useBgColor() return ( } /> a': { mt: 4, fontWeight: 500, mb: 4, fontSize: '0.75rem', color: 'primary.main', textDecoration: 'none' } }} > Please make the payment to start enjoying all the features of our premium plan as soon as possible. theme.spacing(2.75, 3.5), backgroundColor: bgColors.primaryLight.backgroundColor }} > `2px solid ${theme.palette.primary.main}` }} > Platinum e.preventDefault()} sx={{ color: 'primary.main', textDecoration: 'none' }} > Upgrade Plan $ 2,199 /Year Payment details mastercard Credit card 2566 xxxx xxxx 8908 e.target.value.length > 3 ? setCvc1(e.target.value.slice(0, 3)) : setCvc1(e.target.value) } /> credit-card Credit card 8990 xxxx xxxx 6852 e.target.value.length > 3 ? setCvc2(e.target.value.slice(0, 3)) : setCvc2(e.target.value) } /> e.preventDefault()} > Add Payment Method ) } export default CardPlanUpgrade