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) => (event, isExpanded) => { setExpanded(isExpanded ? panel : false); }; return ( Frequently asked questions } aria-controls="panel1d-content" id="panel1d-header" > How do I contact customer support if I have a question or issue? You can reach our customer support team by emailing support@email.com or calling our toll-free number. We're here to assist you promptly. } aria-controls="panel2d-content" id="panel2d-header" > Can I return the product if it doesn't meet my expectations? Absolutely! We offer a hassle-free return policy. If you're not completely satisfied, you can return the product within [number of days] days for a full refund or exchange. } aria-controls="panel3d-content" id="panel3d-header" > What makes your product stand out from others in the market? Our product distinguishes itself through its adaptability, durability, and innovative features. We prioritize user satisfaction and continually strive to exceed expectations in every aspect. } aria-controls="panel4d-content" id="panel4d-header" > Is there a warranty on the product, and what does it cover? Yes, our product comes with a [length of warranty] warranty. It covers defects in materials and workmanship. If you encounter any issues covered by the warranty, please contact our customer support for assistance. ); }