How to guide users from a landing page to full access after sign-up/login?

I have a members only website.

I want to begin the flow with a landing page. This page only has information about membership and a “Join Now” option and at the top right there is a “login” option for existing users.

If a user logs in, I want to direct them to the full access site (ie. access to forum, store, etc.)

If a user chooses to “join now”, i want to direct them to the paid plan page where they will pay for the membership and sign up.

After they sign up, they will be directed to the full access site.

Any and all information would be greatly appreciated.

https://russian-dima.wixsite.com/meinewebsite/website-navigation

import wixLocation from "wix-location";
 
$w.onReady(function () {
  if ( ???? ) {wixLocation.to("https://www.google.com");} 
  else {wixLocation.to("https://www.wix.com");} 
});