import React from "react"; import { Box, Grid, Typography } from "@mui/material"; import { styled } from "@mui/system"; const Circle = styled(Box)(({ theme }) => ({ width: 170, // Increased size height: 170, borderRadius: "50%", display: "flex", alignItems: "center", justifyContent: "center", border: "5px solid", transition: "0.3s", [theme.breakpoints.down("sm")]: { width: 120, // Adjusting for mobile height: 120, }, })); const items = [ { text: "Partnerships", color: "#E3C34D" }, { text: "Technology", color: "#90B5D4" }, { text: "Professionalism", color: "#A2C08A" }, { text: "Transparency", color: "#EDEAE3" }, ]; const WhyChooseUs: React.FC = () => { return ( Why Choose Us? {items.map((item, index) => ( {item.text} ))} ); }; export default WhyChooseUs;