import SwiftUI // Public user profile — shown when navigating to another user's page. // Displays their public library and follower info. // NOTE: This is distinct from ProfileView (self-account management tab). struct UserProfileView: View { let username: String var body: some View { Text(username) .navigationTitle(username) } }