import * as React from 'react'; import Box from '@mui/material/Box'; import Card from '@mui/material/Card'; import Container from '@mui/material/Container'; import Grid from '@mui/material/Grid'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import AutoFixHighRoundedIcon from '@mui/icons-material/AutoFixHighRounded'; import ConstructionRoundedIcon from '@mui/icons-material/ConstructionRounded'; import QueryStatsRoundedIcon from '@mui/icons-material/QueryStatsRounded'; import SettingsSuggestRoundedIcon from '@mui/icons-material/SettingsSuggestRounded'; import SupportAgentRoundedIcon from '@mui/icons-material/SupportAgentRounded'; import ThumbUpAltRoundedIcon from '@mui/icons-material/ThumbUpAltRounded'; import { CreditCard, Lock, MoneyRounded } from '@mui/icons-material'; import VisibilityOffIcon from '@mui/icons-material/VisibilityOff'; const items = [ { icon: , title: 'Refund Policy/Artist Protection', description: 'Payments are made upfront with no refunds. No delivery dates or unwanted communication with the artist. Any chargebacks can be disputed with evidence.', }, { icon: , title: 'Multiple Payment Platforms', description: 'We support credit cards, google pay, and apple pay. More payment providers are coming soon. These are subject to change! All transactions on the platform show up as "Request.Box Request".', }, { icon: , title: 'Skeb-like System', description: 'Requests are made with a message, reference material, and amount of money. Artists can accept or decline the request.', }, { icon: , title: 'Payout Management', description: 'Manage information about how you recieve your payments and view statistics about them in a user friendly dashboard', }, { icon: , title: 'Reliable support', description: 'Get support directly from the developers and other staff members in the community discord.', }, { icon: , title: 'Small Business', description: 'Software and its community is developed and maintained by its developer and founder.', }, ]; export default function Highlights() { return ( Highlights Explore why our product stands out: we keep the artist in mind at all times, and we are always looking for ways to improve the platform. {items.map((item, index) => ( {item.icon}
{item.title} {item.description}
))}
); }