import DashboardLayout from '@/components/dashboard/dashboard-layout' import ProtectedAdmin from '@/layouts/main-layout-protected-admin' import { Stack, Typography} from '@mui/material' const AdminCreatePrograms = () => { return ( <DashboardLayout> <ProtectedAdmin> <Stack flexDirection={'column'} > <Typography variant='h2'>Manage Programs</Typography> <Typography variant='subtitle1'>Manage all your programs here</Typography> </Stack> </ProtectedAdmin> </DashboardLayout> ) } export default AdminCreatePrograms