import React from 'react' import { Box, Typography } from '@mui/material' 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 KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight'; import KeyboardArrowLeftIcon from '@mui/icons-material/KeyboardArrowLeft'; const Home = () => { return ( <> {/* Icon at the start */} NEW IN {/* Icon at the end */} VIEW ALL ) } export default Home