Can I import and use a custom UI Kit?

Is it possible to import and use a custom UI Kit like the Supabase UI Library? It is on GitHub (GitHub - supabase/ui: Supabase UI Library).

You can add custom code on weweb. For example I have integrated stripe elements.

Some consideration about supabase ui library:

  • it is still in development and not recommended for production use
  • it uses react, currently react support is in beta in weweb
  • you need to pass the supabase client to the auth components. Not sure if the weweb supabase auth plugin exposes the client, probably you need to use the supabase sdk directly in your custom code without relying to the weweb plugin
  • weweb is already something like this library: you have elements, builtin ui kits, plugin for auth. Usually custom code is required for a specific functionality, a general library of component is redundant.
2 Likes

Thanks dorilama. The look the supabase ui library components are really nice. So, we thought to incorporate it. But it seems to be quite complex and in beta. So, we will wait.