import * as React from 'react'; import Box from '@mui/material/Box'; import Grid from '@mui/material/Grid'; import Container from '@mui/material/Container'; import Typography from '../components/Typography'; import TextField from '../components/TextField'; import Snackbar from '../components/Snackbar'; import Button from '../components/Button'; function ProductCTA() { const [open, setOpen] = React.useState(false); const handleSubmit = (event) => { event.preventDefault(); setOpen(true); }; const handleClose = () => { setOpen(false); }; return ( Receive offers Taste the holidays of the everyday close to home. ); } export default ProductCTA;