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
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PageTitle.jsx 1.2KB

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