2. Installing Design Dependencies

Now that we've got our first page running, let's install flowbite so that we can make our page look awesome.

As we know, tailwind is a CSS framework packed with classes corresponding to actual CSS. Similarly, we have Flowbite which is a package built on top of tailwind. Flowbite provides a set of pre-built components such as cards, modals, different buttons and mostly all the basic components.

Let's add flowbite to the app so that we do not have to worry about designs and classes. This will help us better focus more on the app side.

Follow this link to install flowbite to our rails app. We recommend the usage yarn rather than npm by simply typing yarn add flowbite in the command line instead of npm install flowbite

Do not forget to import flowbite

Lesson list