import * as React from 'react'; import Accordion from '@mui/material/Accordion'; import AccordionDetails from '@mui/material/AccordionDetails'; import AccordionSummary from '@mui/material/AccordionSummary'; import Box from '@mui/material/Box'; import Container from '@mui/material/Container'; import Link from '@mui/material/Link'; import Typography from '@mui/material/Typography'; import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; export default function FAQ() { const [expanded, setExpanded] = React.useState(false); const handleChange = (panel: string) => (event: React.SyntheticEvent, isExpanded: boolean) => { setExpanded(isExpanded ? panel : false); }; return ( Frequently asked questions } aria-controls="panel1d-content" id="panel1d-header" > What if I am banned on Stripe? You can reach out to our customer support on discord. We will help you figure out a solution tailored to your situation. } aria-controls="panel2d-content" id="panel2d-header" > What happens if I dont like the art the artist provided? There are no refunds what so ever on this platform. We are not responsible for the art that is provided by the artist. We are simply a platform that connects artists with clients. We are not responsible for the quality of the art that is provided by the artist. } aria-controls="panel3d-content" id="panel3d-header" > What makes your product stand out from others in the market? We provide support for the artists incase of chargebacks and other problems caused by problematic clients. } aria-controls="panel4d-content" id="panel4d-header" > What countries are supported on the platforms for clients or for artists? This list will be changing often. We currently support all countries that Stripe supports. We are working on adding more payment processors to support more countries. ); }