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.

Home.jsx 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. import React from 'react'
  2. import { Box, Typography } from '@mui/material'
  3. import Grid from '@mui/material/Grid2';
  4. import Carousel from '../components/Carousel'
  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 KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight';
  11. import KeyboardArrowLeftIcon from '@mui/icons-material/KeyboardArrowLeft';
  12. import ProductType from '../components/ProductType';
  13. import NewsLetter from '../components/NewsLetter';
  14. import ProductService from "../services/ProductService"
  15. const Home = () => {
  16. React.useEffect(()=>{
  17. ProductService.getProducts();
  18. },[])
  19. return (
  20. <>
  21. <Carousel />
  22. <Box sx={{
  23. px: {
  24. xs: 2,
  25. md: 12,
  26. lg: 20
  27. },
  28. mb: {
  29. xs: 0,
  30. md: 5,
  31. lg: 10
  32. }
  33. }}>
  34. <Grid container sx={{
  35. py:{
  36. xs:3,
  37. md:3,
  38. lg:6
  39. }
  40. }}>
  41. {/* OFFSET PURPOSE */}
  42. <Grid size={{xs:12, md:2}} sx={{display:"flex", alignItems:"center" }}></Grid>
  43. <Grid size={{xs:12, md:4}} sx={{mx:"auto", display:"flex", alignItems:"center", justifyContent:"center" }}>
  44. {/* Icon at the start */}
  45. <KeyboardArrowLeftIcon sx={{ mr: 3, color: "#B7B7B7" }} />
  46. <Typography variant="h4">
  47. NEW IN
  48. </Typography>
  49. {/* Icon at the end */}
  50. <KeyboardArrowRightIcon sx={{ ml: 3, color: "#B7B7B7" }} />
  51. </Grid>
  52. <Grid size={{xs:12, md:2}} sx={{display:"flex", alignItems:"center", py:{xs:2, md:0} }}>
  53. <Link href="/product" sx={{ color:"#000", textDecoration: "underline", m:{xs:"auto auto auto auto", md:"0 0 0 auto"}}}>VIEW ALL</Link>
  54. </Grid>
  55. </Grid>
  56. <ProductSelected />
  57. </Box>
  58. <VideoAds width={"100%"} height={{
  59. xs: 350,
  60. md: 500,
  61. lg: 750,
  62. }} />
  63. <Box sx={{
  64. px: {
  65. xs: 2,
  66. md: 12,
  67. lg: 20
  68. },
  69. mb: {
  70. xs: 2,
  71. md: 5,
  72. lg: 10
  73. }
  74. }}>
  75. <Box sx={{ flexGrow: 1, mt: 10 }}>
  76. <Grid container spacing={2}>
  77. <Grid size={12}>
  78. <ProductType />
  79. </Grid>
  80. <Grid size={{xs:12, md:6}}>
  81. <ProductType />
  82. </Grid>
  83. <Grid size={{xs:12, md:6}}>
  84. <ProductType />
  85. </Grid>
  86. <Grid size={12}>
  87. <ProductType />
  88. </Grid>
  89. </Grid>
  90. </Box>
  91. </Box>
  92. <NewsLetter />
  93. <Box sx={{ px:{
  94. xs:2,
  95. md:12,
  96. lg:20
  97. }, mb: 10 }}>
  98. <SocialMedia />
  99. <Feature />
  100. </Box>
  101. </>
  102. )
  103. }
  104. export default Home