Guys, after dedicating some time reading the docs and testing BOS in social-near I have some doubts: **1.** I see that it is integrated with bootstrap, so bootstrap classes are understanded, but is there any way I can use tailwindcss instead? or styled components or any other styles library? **2.** SocialDB get and getr functions are cool, but I can't understand how it is supposed to be used. For example, I can retrieve a piece of onchain code, but I can't use it in my JSX like ``` const ComponentTest = Social.get("mob.near/widget/...") return <ComponentTest /> ``` The same way I can't use this as a Widget component src props. So, why to use this Social.get instead of adding the gateway component path to the src prop of Widget component? **3.** When trying to develop locally, I found no template that understand State, Social and other BOS classes, does it exist? When using npx create-near-app, it create a next app with a lot of hooks but there is nothing called Social or State to import to my code. **4.** How can I use on-chain code(Components, Widgets) on my existent apps? For example, I have a nextjs and I'd like to build all interfaces using existent widgets or new widgets that I'm creating, is there any package I can download? How to make my app to understand BOS api? #build #question