import React from 'react'
import styled from '@emotion/styled';
import InfoCard from '@components/InfoCard';
import { Grid } from '@mui/material';
const CustomDiv = styled.div`
background-color: ${(props) => props.theme.palette.primary.light};
height: 140vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
`;
const PerksPage = () => {
let wealthCardPicture = (
);
let independenceCardPicture = (
);
let securityCardPicture = (
);
return (
)
}
export default PerksPage