import React from 'react' import { Box, Typography } from '@mui/material' import Grid from '@mui/material/Grid2'; import Carousel from '../components/Carousel' import ProductSelected from '../components/ProductSelected' import SocialMedia from '../components/SocialMedia' import Feature from '../components/Feature' import { Link } from '@mui/material' import VideoAds from '../components/VideoAds' import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight'; import KeyboardArrowLeftIcon from '@mui/icons-material/KeyboardArrowLeft'; import ProductType from '../components/ProductType'; import NewsLetter from '../components/NewsLetter'; import ProductService from "../services/ProductService" const Home = () => { React.useEffect(()=>{ ProductService.getProducts(); },[]) return ( <> {/* OFFSET PURPOSE */} {/* Icon at the start */} NEW IN {/* Icon at the end */} VIEW ALL ) } export default Home