What problem does it solve? Building authentication from scratch is error-prone and unnecessary on Wix. This Skill provides ready-made patterns for login pages, protected routes, and member-aware UI using Wix's managed member features, so you never hand-roll auth flows. ## Core Features & Use Cases - Protected Routes: Redirect unauthenticated visitors to /login with return-URL preservation and loading states. - Login Page Pattern: A single /login route that redirects already-authenticated users back to their intended destination. - Conditional Member UI: Show different navigation, avatars, and user menus based on login state via the useMembers hook. - Use Case: You need a members-only dashboard. Wrap the page in the protected route pattern, add a /login page with the SignIn component, and render a user menu in the header showing the member's avatar and email. ## Quick Start Add a protected dashboard page and a login page to my Wix Astro app using Wix member features.