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
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Home.jsx 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. import React from 'react'
  2. import { Box, Typography } from '@mui/material'
  3. import Grid from '@mui/material/Grid2';
  4. import CarouselContainer from '../components/CarouselContainer'
  5. import ProductSelected from '../components/ProductSelected'
  6. import SocialMedia from '../components/SocialMedia'
  7. import Feature from '../components/Feature'
  8. import { Link } from '@mui/material'
  9. import VideoAds from '../components/VideoAds'
  10. import ProductType from '../components/ProductType';
  11. import NewsLetter from '../components/NewsLetter';
  12. import ProductService from "../services/ProductService"
  13. import AmberHomeWallpaper from "../assets/images/amberHomeWallpaper.webp";
  14. import AmberBeautyWallpaper from "../assets/images/amberBeautyWallpaper.webp";
  15. import AmberClothing from "../assets/images/amberClothing.webp"
  16. const Home = () => {
  17. React.useEffect(()=>{
  18. ProductService.getProducts();
  19. },[])
  20. return (
  21. <>
  22. <CarouselContainer />
  23. <Box sx={{
  24. px: {
  25. xs: 2,
  26. md: 5,
  27. lg: 5
  28. }
  29. }}>
  30. <ProductSelected />
  31. </Box>
  32. <VideoAds />
  33. <Box sx={{
  34. px: {
  35. xs: 2,
  36. md: 5,
  37. lg: 5
  38. },
  39. mb: {
  40. xs: 2,
  41. md: 5,
  42. lg: 10
  43. }
  44. }}>
  45. <Box sx={{ flexGrow: 1, mt: 5 }}>
  46. <Grid container spacing={2}>
  47. <Grid size={12}>
  48. <ProductType title={'Apparel'} img_url={AmberClothing}/>
  49. </Grid>
  50. <Grid size={{xs:12, md:6}}>
  51. <ProductType title={'BEAUTY'} img_url={AmberBeautyWallpaper}/>
  52. </Grid>
  53. <Grid size={{xs:12, md:6}}>
  54. <ProductType title={'HOME'} img_url={AmberHomeWallpaper} />
  55. </Grid>
  56. </Grid>
  57. </Box>
  58. </Box>
  59. <NewsLetter />
  60. <Box sx={{ px:{
  61. xs: 2,
  62. md: 5,
  63. lg: 5
  64. }, mb: 10 }}>
  65. <Feature />
  66. </Box>
  67. </>
  68. )
  69. }
  70. export default Home