import React from 'react';
import {
Box,
Button,
Card,
CardContent,
Typography,
useMediaQuery
} from '@mui/material';
import { useTheme } from '@mui/material/styles';
import AddIcon from '@mui/icons-material/Add';
const NoProdectDash = () => {
const theme = useTheme();
const isSmallScreen = useMediaQuery(theme.breakpoints.down('sm'));
return (
<>
{/* Header Section */}
{/* Empty State Content */}
{/* Image Placeholder */}
{/* Title with colored "Sorry!" */}
Sorry!{' '}
There is no campaign available.
Please initiate the {'\n'}creation of a new campaign.
{/* Action Button */}
}
sx={{
textTransform: 'none',
px: 4,
py: 1.5,
fontSize: '13px',
fontWeight: 500,
borderRadius: 2,
color:'white',
width:179
}}
>
Add a Product
>
);
};
export default NoProdectDash;