Redirect Member After Logout... I'm stuck!

If the code you have works, you are probably looking to add this:

wixLocation.to("/page-slug");

So, you would change - /page-slug to the slug of the page you want to redirect to. It would look something like this:

import{authentication}from 'wix-members'      

$w('#logout').onClick(()=>{
	authentication.logout();
	wixLocation.to("/page-slug");
});