If you want your projects to do more than look good, think about how they'll actually work. Supabase handles auth, databases, storage and edge functions.
When designing with it in mind, anticipate auth logic (what shows when logged in vs logged out), dynamic content (what's pulled from a table) and states (empty, loading, failed). You don't need a working backend during design, but shaping your UI as if it's already there future-proofs your layout.
Prompt
If the user is logged in via Supabase, show their profile image and name in the top right. If not, display a 'Log In' button and route them to the auth screen.