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.

SocialMedia.jsx 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import React from 'react';
  2. import { Box, Typography } from '@mui/material';
  3. import InstagramIcon from '@mui/icons-material/Instagram';
  4. import FacebookIcon from '@mui/icons-material/Facebook';
  5. import TwitterIcon from '@mui/icons-material/Twitter';
  6. const SocialMedia = () => {
  7. const socialMedia = [
  8. { icon: <InstagramIcon color="primary" />, name: 'Instagram', link: 'https://www.instagram.com/amber.officials/?hl=en' },
  9. { icon: <FacebookIcon color="primary" />, name: 'Facebook', link: 'https://www.facebook.com/amber.officials/' },
  10. { icon: <TwitterIcon color="primary" />, name: 'Twitter', link: 'https://twitter.com/amber.officials' },
  11. ];
  12. return (
  13. <Box
  14. sx={{
  15. display: 'flex',
  16. flexDirection: 'row', // Stack on small screens
  17. justifyContent: 'center',
  18. gap: 8,
  19. padding: 2,
  20. py: 4,
  21. borderTop: '1px solid #CFCFCF',
  22. borderBottom: '1px solid #CFCFCF',
  23. cursor: 'pointer'
  24. }}
  25. >
  26. {socialMedia.map((media, index) => (
  27. <Box
  28. key={index}
  29. onClick={()=>{
  30. window.open(media.link, '_blank')
  31. }}
  32. sx={{
  33. display: 'flex',
  34. flexDirection: { xs: 'column', sm: 'row' }, // Stack icon and text on small screens
  35. alignItems: 'center',
  36. gap: 1,
  37. }}
  38. >
  39. {media.icon}
  40. <Typography variant="body1" sx={{fontWeight: 'bold', color:'#000',':hover':{color:"#95AAC5"}}}>
  41. {media.name}
  42. </Typography>
  43. </Box>
  44. ))}
  45. </Box>
  46. );
  47. };
  48. export default SocialMedia;