|
| 1 | +<flowbite-accordion> |
| 2 | + <flowbite-accordion-panel [isOpen]="true"> |
| 3 | + <flowbite-accordion-title [icon]="no_arrow">What is Flowbite ?</flowbite-accordion-title> |
| 4 | + <flowbite-accordion-content> |
| 5 | + <div class="p-5"> |
| 6 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 7 | + Flowbite is an open-source library of interactive components built on top of Tailwind CSS |
| 8 | + including buttons, dropdowns, modals, navbars, and more. |
| 9 | + </p> |
| 10 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 11 | + Check out this guide to learn how to |
| 12 | + <a |
| 13 | + class="text-base font-medium underline text-gray-600 dark:text-gray-400 decoration-primary-600 dark:decoration-primary-500" |
| 14 | + href="https://flowbite.com/docs/getting-started/introduction/"> |
| 15 | + Get started |
| 16 | + </a> |
| 17 | + and start developing websites even faster with components on top of Tailwind CSS. |
| 18 | + </p> |
| 19 | + </div> |
| 20 | + </flowbite-accordion-content> |
| 21 | + </flowbite-accordion-panel> |
| 22 | + <flowbite-accordion-panel> |
| 23 | + <flowbite-accordion-title [icon]="question_mark_arrow"> |
| 24 | + Is there a Figma file available ? |
| 25 | + </flowbite-accordion-title> |
| 26 | + <flowbite-accordion-content> |
| 27 | + <div class="p-5"> |
| 28 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 29 | + Flowbite is first conceptualized and designed using the Figma software so everything you |
| 30 | + see in the library has a design equivalent in our Figma file. |
| 31 | + </p> |
| 32 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 33 | + Check out the |
| 34 | + <a href="https://flowbite.com/figma/">Figma design system</a> |
| 35 | + based on the utility classes from Tailwind CSS and components from Flowbite. |
| 36 | + </p> |
| 37 | + </div> |
| 38 | + </flowbite-accordion-content> |
| 39 | + </flowbite-accordion-panel> |
| 40 | + <flowbite-accordion-panel> |
| 41 | + <flowbite-accordion-title> |
| 42 | + What are the differences between Flowbite and Tailwind UI ? |
| 43 | + </flowbite-accordion-title> |
| 44 | + <flowbite-accordion-content> |
| 45 | + <div class="p-5"> |
| 46 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 47 | + The main difference is that the core components from Flowbite are open source under the |
| 48 | + MIT license, whereas Tailwind UI is a paid product. Another difference is that Flowbite |
| 49 | + relies on smaller and standalone components, whereas Tailwind UI offers sections of pages. |
| 50 | + </p> |
| 51 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 52 | + However, we actually recommend using both Flowbite, Flowbite Pro, and even Tailwind UI as |
| 53 | + there is no technical reason stopping you from using the best of two worlds. |
| 54 | + </p> |
| 55 | + <p class="text-base font-normal text-gray-600 dark:text-gray-400"> |
| 56 | + Learn more about these technologies : |
| 57 | + </p> |
| 58 | + <ul class="text-base font-normal text-gray-600 dark:text-gray-400 list-disc list-inside"> |
| 59 | + <li> |
| 60 | + <a |
| 61 | + class="text-base font-medium underline text-gray-600 dark:text-gray-400 decoration-primary-600 dark:decoration-primary-500" |
| 62 | + href="https://flowbite.com/pro/"> |
| 63 | + Flowbite Pro |
| 64 | + </a> |
| 65 | + </li> |
| 66 | + <li> |
| 67 | + <a |
| 68 | + class="text-base font-medium underline text-gray-600 dark:text-gray-400 decoration-primary-600 dark:decoration-primary-500" |
| 69 | + href="https://tailwindui.com/" |
| 70 | + rel="nofollow"> |
| 71 | + Tailwind UI |
| 72 | + </a> |
| 73 | + </li> |
| 74 | + </ul> |
| 75 | + </div> |
| 76 | + </flowbite-accordion-content> |
| 77 | + </flowbite-accordion-panel> |
| 78 | +</flowbite-accordion> |
| 79 | + |
| 80 | +<ng-template #no_arrow /> |
| 81 | +<ng-template #question_mark_arrow> |
| 82 | + <flowbite-icon |
| 83 | + svgIcon="outline:question-circle" |
| 84 | + class="h-6 w-6 shrink-0" /> |
| 85 | +</ng-template> |
0 commit comments