### Day 01 I've created the Bullet Text component based on Near Builders Figma. I did an widget for it while my PR is not approved. Beyond that I added the conditions of being a community or council member to the Join now button. The PR: https://github.com/NEARBuilders/gateway/pull/26 The Widget: https://near.social/rambo-dev.near/widget/BuildDAOBullet In the future this widget path is supposed to be like: buildhub.near/widget/components.Bullet OBS: I've started creating a ThemeProvider widget, so the BuildDAO's widgets and components can use this for style tokens(e.g. colors, font-sizes, etc) ### Day 02 Added a variant prop for the Bullet, so it can handle with the "pending" and "joined" status for bullet texts. The content is totally agnostic, so you can place anything inside it. E.G. ``` const { Bullet } = VM.require("rambo-dev.near/widget/BuildDAOBullet"); return <Bullet>Hello Test</Bullet> ``` The component docs may be seen here by now: https://near.social/createit.near/widget/p?id=2a4361d5-a7c5-32bb-b915-e041383a2f6f&by=rambo-dev.near&doc=undefined The ThemeProvider can now be used to import colors. I'm looking forward to add more to it. ``` const { theme } = VM.require("rambo-dev.near/widget/ThemeProvider"); ``` #### REFS Usage: https://near.social/mob.near/widget/WidgetSource?src=rambo-dev.near/widget/BuildDAOBullet Widget: https://near.social/mob.near/widget/WidgetSource?src=rambo-dev.near/widget/ThemeProvider With this maybe we could start importing style tokens from it.