I want to build a theme settings page where admins can switch between color palettes and border radius presets, and have the settings persist for all users. What is the best way to do this in WeWeb?
Store the admin-selected values in your backend (Xano or Supabase). When the dashboard initializes, fetch these settings and store them in global variables in WeWeb. Then use these variables instead of hard-coded values so the UI updates dynamically based on the admin’s configuration.
