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
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

NewsLetter.jsx 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import React from 'react';
  2. import { Box, Button, TextField, InputAdornment, Typography } from '@mui/material';
  3. const NewsLetter = () => {
  4. return (
  5. <Box
  6. sx={{
  7. position: 'relative',
  8. width: '100%',
  9. height: 0,
  10. paddingTop: '600px', // This sets the height based on top padding
  11. overflow: 'hidden',
  12. display: "flex"
  13. }}
  14. >
  15. <Box
  16. sx={{
  17. position: 'absolute',
  18. top: 0,
  19. left: 0,
  20. width: '100%',
  21. height: '100%',
  22. display: 'flex',
  23. backgroundColor: 'rgba(50, 50, 50, 0.5)', // Filter overlay
  24. flexDirection: 'column',
  25. justifyContent: 'center',
  26. alignItems: 'center',
  27. color: '#fff', // Text and button color for visibility
  28. }}
  29. >
  30. <Box sx={{ width: {xs:"80%", md:"35%"}, backgroundColor: "rgba(255,255,255, 0.5)", padding: 10, textAlign:"center", color:"black" }}>
  31. <Typography variant='h3'>
  32. Let's Stay in touch
  33. </Typography>
  34. <Typography variant='body1'>
  35. Enjoy 15% off your first order when you join our mailing list.
  36. </Typography>
  37. <TextField
  38. label="Enter your email address"
  39. variant="outlined"
  40. fullWidth
  41. sx={{ backgroundColor: "white", my:4 }}
  42. InputProps={{
  43. endAdornment: (
  44. <InputAdornment position="end">
  45. <Button
  46. variant="contained"
  47. color="primary"
  48. sx={{ height: "100%", borderTopLeftRadius: 0, borderBottomLeftRadius: 0 }}
  49. >
  50. Send
  51. </Button>
  52. </InputAdornment>
  53. )
  54. }}
  55. />
  56. <Typography variant='body1'>
  57. We respect your privacy, so we never share your info.
  58. </Typography>
  59. </Box>
  60. </Box>
  61. </Box>
  62. );
  63. };
  64. export default NewsLetter;