User/Admin difference

I’m making an Angular app. and I’m using OktaAuthGuard to protect routes, is there a way for it to block users and let admins pass for a certain page?

Example:
const routes: Routes = [
{path: ‘adminpage’, component: AdminPageComponent, canActivate: [OktaAuthGuard]}

Just to clarify, if I make a user on the okta admin panel, I want him to have less privileges than i do on the app.