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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import React from 'react';
  2. import { createStyles, styled } from '@mui/material/styles';
  3. import { Box, Typography, Link } 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: 10,
  11. paddingBottom: 10,
  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 headerStyle = createStyles({
  21. icon:{
  22. fontSize:17
  23. }
  24. })
  25. const Header = () => {
  26. return (
  27. <Container>
  28. <Box sx={{color:"white", px:23}}>
  29. <Box sx={{display:"flex", gap:1}}>
  30. <InstagramIcon style={headerStyle.icon} />
  31. <FacebookIcon style={headerStyle.icon} />
  32. <TwitterIcon style={headerStyle.icon} />
  33. <PinterestIcon style={headerStyle.icon} />
  34. </Box>
  35. <Typography variant="body2" sx={{position: "absolute", top: "50%", left: "50%", transform: "translate(-50%, -50%)" }}>Don’t miss out on our next big thing! Click <Link sx={{color:"white", textDecoration:"underline"}}> here</Link> to subcribe now.</Typography>
  36. </Box>
  37. </Container>
  38. );
  39. };
  40. export default Header;