import { useState } from 'react'; import bgImage from "../../assets/images/newsletterwallpaper.webp" import { Box, Button, TextField, InputAdornment, Typography } from '@mui/material'; import customerService from '../../services/CustomerService'; const NewsLetter = () => { const [email, setEmail] = useState("") return ( Let's stay in touch Enjoy 15% off your first order when you join our mailing list. { setEmail(e.target.value) }} sx={{ backgroundColor: "white", overflow:"hidden", borderRadius:"4px", my: 4, '& .MuiInputLabel-root': { fontSize: { xs: "12px", sm: "12px", md: "16px" }, }, }} InputProps={{ endAdornment: ( ) }} /> We respect your privacy, so we never share your info. ); }; export default NewsLetter;