Button Link to a dynamic page,

Button Link to a dynamic page, hi guys I would very much appreciate if someone could help me. I have set a member site and the profile page is a dynamic page can someone please tell me how to add a button for each member to go directly to their profile page.

Thank you in advance

What you are trying to achieve has already been done in this Wix Member Profile tutorial example.
https://support.wix.com/en/article/corvid-tutorial-building-your-own-members-area

With a button taking the user to their own unique member page through an onClick event handler function like this.

export function profileButton_click(event) {
wixLocation.to(`/Members/${wixUsers.currentUser.id}`);
}

Hi,
Thank you so much, I really appreciate you helping me