// MUI Imports import Typography from '@mui/material/Typography' import Breadcrumbs from '@mui/material/Breadcrumbs' import Grid from '@mui/material/Grid2' import Divider from '@mui/material/Divider' import InputAdornment from '@mui/material/InputAdornment' // Third-party Imports import classnames from 'classnames' // Component Imports import Link from '@components/Link' import DirectionalIcon from '@components/DirectionalIcon' import CustomTextField from '@core/components/mui/TextField' // Styles Imports import frontCommonStyles from '@views/front-pages/styles.module.css' // Data const articleList = [ 'Template Kits', 'Elementor Template Kits: PHP Zip Extends', 'Envato Elements Template Kits', 'Envato Elements Template Kits', 'How to use the template in WordPress', 'How to use the Template Kit Import' ] const Questions = () => { return (
Help Center How to add product in cart How to add product in cart? 1 month ago - Updated
If you're after only one item, simply choose the 'Buy Now' option on the item page. This will take you directly to Checkout. If you want several items, use the 'Add to Cart' button and then choose 'Keep Browsing' to continue shopping or 'Checkout' to finalize your purchase.
product image You can go back to your cart at any time by clicking on the shopping cart icon at the top right side of the page. checkout image
) } }} />
Articles in this section
{articleList.map((article, index) => ( {article} ))}
) } export default Questions