Amber Shopify Project created using ReactJS+React-Redux with GraphQL API integration. Storefront Shopify API: https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/storefront-api-client#readme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Feature.jsx 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import React from 'react';
  2. import { Box, Typography } from '@mui/material';
  3. import AssignmentTurnedInIcon from '@mui/icons-material/AssignmentTurnedIn';
  4. import ReplayIcon from '@mui/icons-material/Replay';
  5. import AssuredWorkloadIcon from '@mui/icons-material/AssuredWorkload';
  6. import SupportAgentIcon from '@mui/icons-material/SupportAgent';
  7. const Feature = () => {
  8. const features = [
  9. { icon: <AssignmentTurnedInIcon color="primary" sx={{ fontSize: 40 }} />, name: 'Pickup at any Store', description: "Free shipping on orders over $65" },
  10. { icon: <ReplayIcon color="primary" sx={{ fontSize: 40 }} />, name: 'Free returns', description:"30-days free return policy." },
  11. { icon: <AssuredWorkloadIcon color="primary" sx={{ fontSize: 40 }} />, name: 'Secured payments', description:"We accept all major credit cards." },
  12. { icon: <SupportAgentIcon color="primary" sx={{ fontSize: 40 }} />, name: 'Customer service', description:"Top notch customer service." },
  13. ];
  14. return (
  15. <Box
  16. sx={{
  17. display: 'flex',
  18. justifyContent: 'space-between',
  19. alignItems: 'center',
  20. padding: 2,
  21. mt:5
  22. }}
  23. >
  24. {features.map((feature, index) => (
  25. <Box
  26. key={index}
  27. sx={{
  28. display: 'flex',
  29. flexDirection: 'column',
  30. alignItems: 'center',
  31. textAlign: 'center',
  32. flex: 1,
  33. borderRight: index < features.length - 1 ? '1px solid #CFCFCF' : 'none', // Add right border except for the last item
  34. padding: 2,
  35. }}
  36. >
  37. {feature.icon}
  38. <Typography
  39. variant="body1"
  40. sx={{ marginTop: 1, fontWeight: 'bold', color: 'text.primary' }}
  41. >
  42. {feature.name}
  43. </Typography>
  44. <Typography
  45. variant="body2"
  46. sx={{ marginTop: 1, color: 'text.primary' }}
  47. >
  48. {feature.description}
  49. </Typography>
  50. </Box>
  51. ))}
  52. </Box>
  53. );
  54. };
  55. export default Feature;