import { styled } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Paper from '@mui/material/Paper'; import Grid from '@mui/material/Grid'; const Item = styled(Paper)(({ theme }) => ({ backgroundColor: '#fff', ...theme.typography.body2, padding: theme.spacing(1), textAlign: 'center', color: (theme.vars ?? theme).palette.text.secondary, ...theme.applyStyles('dark', { backgroundColor: '#1A2027', }), })); export default function NestedGrid() { return ( Email subscribe section Category A
  • Link 1.1
  • Link 1.2
  • Link 1.3
  • Category B
  • Link 2.1
  • Link 2.2
  • Link 2.3
  • Category C
  • Link 3.1
  • Link 3.2
  • Link 3.3
  • Category D
  • Link 4.1
  • Link 4.2
  • Link 4.3
  • © Copyright Link A Link B Link C
    ); }