What would you say will be the best way to separate two different type of users to two different types of frontend/GUI? [closed]

So currently I am developing a project called manage+ using Django+React, I want to redirect them to different type of frontend? GUI based on their different types of roles. Now what would you suggest I should do types of. I make two completely different types of frontend, or any other idea or anything that you would suggest?

I tried making two different frontend, and also did one logic which fetches the type of user from backend and then loads the different frontend based on that user using some logic in frontend itself, but I think it is not very ethical, or I should say it makes it slow I guess.

Back to Top