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 */} ); }; export default NoProdectDash;