import * as React from 'react'; import { styled } from '@mui/material/styles'; import Grid from '@mui/material/Grid'; import Button from '@mui/material/Button'; import KeyboardArrowRightRounded from '@mui/icons-material/KeyboardArrowRightRounded'; import Paper from '@mui/material/Paper'; import Typography from '@mui/material/Typography'; import MuiAccordion from '@mui/material/Accordion'; import MuiAccordionSummary from '@mui/material/AccordionSummary'; import MuiAccordionDetail from '@mui/material/AccordionDetails'; import KeyboardArrowDownRounded from '@mui/icons-material/KeyboardArrowDownRounded'; import { Link as InternalLink } from '@mui/docs/Link'; import Section from 'docs/src/layouts/Section'; const faqData = [ { summary: 'What long-term support do you offer?', detail: ( We think you'll love the components we've built so far, but we're planning to release more. We opened it up as soon as we had something useful, so that you can start getting value from it right away, and we'll be adding new features and components based on our own ideas, and on suggestions from early access customers. ), }, { summary: 'How many licenses do I need?', detail: ( The number of licenses purchased must correspond to the maximum number of editors working concurrently in a 24 hour period. An editor is somebody contributing changes to the designed screens that use the Design Kits. No licenses are required for viewing the designs. ), }, { summary: 'The Design Kit got an update. How do I get it?', detail: ( We'll send you an email when a new release is available. You can access the item on the{' '} download page of your store account and find a detailed description of the changes under the"Changelog" tab on this page. ), }, { summary: 'Is the Material UI Sync plugin paid?', detail: ( No. We're still in alpha mode and rolling out more features progressively, as per your feedback. We might introduce paid tiers in the future, though. ), }, { summary: 'Do you offer discounts to educational or non-profit organizations?', detail: ( Yes. We offer a 50% discount on all products licensed to students, instructors, non-profit, and charity entities. This special discount cannot be combined with any other type of discount. To qualify for the discount, you need to send us a document clearly indicating that you are a member of the respective institution. An email from your official account which bears your signature is sufficient in most cases. For more information on how to qualify for a discount, please contact sales. ), }, { summary: 'Figma or Sketch?', detail: ( We aim to keep feature parity between the Figma and Sketch kits where possible. We have a 50% off coupon for past customers who want to switch between them. ), }, ]; const Accordion = styled(MuiAccordion)(({ theme }) => ({ padding: theme.spacing(2), transition: theme.transitions.create('box-shadow'), '&&': { borderRadius: theme.shape.borderRadius, }, '&:hover': { boxShadow: '1px 1px 8px 0 rgb(90 105 120 / 20%)', }, '&:not(:last-of-type)': { marginBottom: theme.spacing(2), }, '&::before': { display: 'none', }, '&::after': { display: 'none', }, })); const AccordionSummary = styled(MuiAccordionSummary)(({ theme }) => ({ padding: theme.spacing(2), margin: theme.spacing(-2), minHeight: 'auto', '&.Mui-expanded': { minHeight: 'auto', }, '& .MuiAccordionSummary-content': { margin: 0, paddingRight: theme.spacing(2), '&.Mui-expanded': { margin: 0, }, }, })); const AccordionDetails = styled(MuiAccordionDetail)(({ theme }) => ({ marginTop: theme.spacing(1), padding: 0, })); export default function DesignKitFAQ() { function renderItem(index: number) { const faq = faqData[index]; return ( } > {faq.summary} {faq.detail} ); } return (
Frequently asked questions {renderItem(0)} {renderItem(1)} {renderItem(2)} {renderItem(3)} {renderItem(4)} ({ p: 2, pb: 1, borderStyle: 'dashed', borderColor: 'grey.300', bgcolor: 'white', textAlign: 'left', ...theme.applyDarkStyles({ borderColor: 'primaryDark.600', bgcolor: 'primaryDark.800', }), })} > Still have questions? From community help to premium business support, we're here for you.
); }