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'; const items = [ { icon: , title: 'Adaptable performance', description: 'Our product effortlessly adjusts to your needs, boosting efficiency and simplifying your tasks.', }, { icon: , title: 'Built to last', description: 'Experience unmatched durability that goes above and beyond with lasting investment.', }, { icon: , title: 'Great user experience', description: 'Integrate our product into your routine with an intuitive and easy-to-use interface.', }, { icon: , title: 'Innovative functionality', description: 'Stay ahead with features that set new standards, addressing your evolving needs better than the rest.', }, { icon: , title: 'Reliable support', description: 'Count on our responsive customer support, offering assistance that goes beyond the purchase.', }, { icon: , title: 'Precision in every detail', description: 'Enjoy a meticulously crafted product where small touches make a significant impact on your overall experience.', }, ]; export default function Highlights() { return ( Highlights Explore why our product stands out: adaptability, durability, user-friendly design, and innovation. Enjoy reliable customer support and precision in every detail. {items.map((item, index) => ( {item.icon}
{item.title} {item.description}
))}
); }