features-3.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <section class="section{% if include.background %} section-{{ include.background }}{% endif %}{% if include.class %} {{ include.class }}{% endif %}">
  2. {% include "marketing/section-divider.html" divider=include.divider %}
  3. <div class="container">
  4. <div class="section-header">
  5. <h2 class="section-title">Everything you need to deploy your app</h2>
  6. <div class="section-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
  7. </div>
  8. <div class="row g-10">
  9. <div class="col-lg-6">
  10. <div class="space-y-6">
  11. <div>
  12. <div class="row">
  13. <div class="col-auto">
  14. {% include "ui/shape.html" icon="tools" size="md" %}
  15. </div>
  16. <div class="col">
  17. <h3 class="h2 mb-2">Designed with users in mind</h3>
  18. <p class="text-muted m-0">
  19. Tabler is fully responsive and compatible with all modern browsers. Thanks to its modern, user-friendly design you can create a fully functional interface that users will love. Every UI element has been created with
  20. attention to detail to make your interface beautiful!
  21. </p>
  22. </div>
  23. </div>
  24. </div>
  25. <div>
  26. <div class="row">
  27. <div class="col-auto">
  28. {% include "ui/shape.html" icon="brand-bootstrap" size="md" %}
  29. </div>
  30. <div class="col">
  31. <h3 class="h2 mb-2">Built for developers</h3>
  32. <p class="text-muted m-0">
  33. Having in mind what it takes to write high-quality code, we want to help you speed up the development process and keep your code clean. Based on Bootstrap 5, Tabler is a cutting-edge solution, compatible with all modern
  34. browsers and fully responsive.
  35. </p>
  36. </div>
  37. </div>
  38. </div>
  39. <div>
  40. <div class="row">
  41. <div class="col-auto">
  42. {% include "ui/shape.html" icon="paint" size="md" %}
  43. </div>
  44. <div class="col">
  45. <h3 class="h2 mb-2">Fully customizable</h3>
  46. <p class="text-muted m-0">You can easily customize the UI elements to make them fit the needs of your project. And don’t worry if you don’t have much experience - Tabler is easy to get started!</p>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <div class="col-lg-6 mt-3 mt-lg-0">{% include "ui/svg.html" width=500 height=400 border=true %}</div>
  53. </div>
  54. </div>
  55. </section>