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.

PageTitle.jsx 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import React from "react";
  2. import Box from "@mui/material/Box";
  3. import Typography from "@mui/material/Typography";
  4. const PageTitle = ({title = "", image = ""}) => {
  5. return (
  6. <Box
  7. sx={{
  8. position: "relative",
  9. minHeight: "300px",
  10. backgroundImage: `url("${image}")`,
  11. backgroundSize: "cover",
  12. backgroundPosition: "top center",
  13. color: "white",
  14. textAlign: "center",
  15. overflow: "hidden", // Ensures the dim layer stays inside the box
  16. display:"flex"
  17. }}
  18. >
  19. {/* Overlay */}
  20. <Box
  21. sx={{
  22. position: "absolute",
  23. top: 0,
  24. left: 0,
  25. right: 0,
  26. bottom: 0,
  27. backgroundColor: "rgba(0, 0, 0, 0.5)", // Adjust opacity to control dimness
  28. zIndex: 1,
  29. }}
  30. />
  31. {/* Title */}
  32. <Typography
  33. variant="h3"
  34. sx={{
  35. position: "relative",
  36. zIndex: 2,
  37. margin:"auto auto"
  38. }}
  39. >
  40. {title.toUpperCase() || " "}
  41. </Typography>
  42. </Box>
  43. );
  44. };
  45. export default PageTitle;