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.

Header.jsx 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import React from 'react';
  2. import { styled } from '@mui/material/styles';
  3. import { Box, Typography } from '@mui/material';
  4. import InstagramIcon from '@mui/icons-material/Instagram';
  5. import FacebookIcon from '@mui/icons-material/Facebook';
  6. import TwitterIcon from '@mui/icons-material/Twitter';
  7. import PinterestIcon from '@mui/icons-material/Pinterest';
  8. const Container = styled(Box)(({theme})=>({
  9. backgroundColor: theme.palette.primary.main,
  10. paddingTop: 20,
  11. paddingBottom: 20,
  12. width: "100%",
  13. display:"flex",
  14. position:"relative",
  15. minHeight:"fit-content",
  16. [`@media (max-width: ${theme.breakpoints.values.md}px)`]: {
  17. display: "none"
  18. },
  19. }))
  20. const Header = () => {
  21. return (
  22. <Container>
  23. <Box sx={{color:"white", px:23}}>
  24. <Box sx={{display:"flex", gap:1}}>
  25. <InstagramIcon style={{ fontSize: 20 }} />
  26. <FacebookIcon style={{ fontSize: 20 }} />
  27. <TwitterIcon style={{ fontSize: 20 }} />
  28. <PinterestIcon style={{ fontSize: 20 }} />
  29. </Box>
  30. <Typography variant="body2" sx={{position: "absolute", top: "50%", left: "50%", transform: "translate(-50%, -50%)" }}>Don’t miss out on our next big thing! Click here to subcribe now.</Typography>
  31. </Box>
  32. </Container>
  33. );
  34. };
  35. export default Header;