features.ts 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import { iconsCount, iconsCountRounded } from '@/config/site'
  2. const features = [
  3. {
  4. title: 'Custom avatars',
  5. image: 'feature-1.png',
  6. description:
  7. 'Image, placeholder, status, icon, shape, link, color or maybe all of them? You can create awesome avatars with Tabler!',
  8. url: ''
  9. },
  10. {
  11. title: 'Simple but useful snippets',
  12. image: 'feature-2.png',
  13. description:
  14. "Thanks to Tabler you can build simple snippets, with which you can visualize your data. It's up to you to decide what goes in them.",
  15. url: ''
  16. },
  17. {
  18. title: 'Advanced cards',
  19. image: 'feature-3.png',
  20. description:
  21. 'Use your custom content types to create all the items you need, e.g. articles, movies or different product types.',
  22. url: ''
  23. },
  24. {
  25. title: 'Various blanks',
  26. image: 'feature-4.png',
  27. description:
  28. 'Use your custom content types to create all the items you need, e.g. articles, movies or different product types.',
  29. url: ''
  30. },
  31. {
  32. title: '',
  33. image: 'feature-5.png',
  34. description: '',
  35. url: '',
  36. hide: true
  37. },
  38. {
  39. title: 'Advanced forms',
  40. image: 'feature-6.png',
  41. description:
  42. 'Use your custom content types to create all the items you need, e.g. articles, movies or different product types.',
  43. url: ''
  44. },
  45. {
  46. title: 'Great charts',
  47. image: 'feature-7.png',
  48. description:
  49. 'Use your custom content types to create all the items you need, e.g. articles, movies or different product types.',
  50. url: '',
  51. hide: true
  52. },
  53. {
  54. title: 'Clean modals',
  55. image: 'feature-8.png',
  56. description:
  57. 'You can put a form, a picture, a video, or maybe even something more into the modal. It will look the same every time: awesome!',
  58. url: ''
  59. },
  60. {
  61. title: '',
  62. image: 'feature-9.png',
  63. description: '',
  64. url: '',
  65. hide: true
  66. },
  67. {
  68. title: 'Dark mode',
  69. image: 'feature-10.png',
  70. description:
  71. 'Auto-generated dark theme. From now on, you can give users the choice of which template to use: light or dark?',
  72. url: ''
  73. },
  74. {
  75. title: `Over ${iconsCountRounded} free icons`,
  76. image: 'feature-11.png',
  77. description: `You can use any icons from our free icon pack, which contains ${iconsCount} icons at the moment. Just use icon that best suits your design.`,
  78. url: ''
  79. },
  80. {
  81. title: '',
  82. image: 'feature-12.png',
  83. description: '',
  84. url: '',
  85. hide: true
  86. },
  87. {
  88. title: 'Fancy loaders and placeholders',
  89. image: 'feature-13.png',
  90. description:
  91. 'With the Tabler, the user will not be bored while waiting for data to load and at the same time your website will become more dynamic.',
  92. url: ''
  93. },
  94. {
  95. title: 'Great charts',
  96. image: 'feature-14.png',
  97. description:
  98. 'Use your custom content types to create all the items you need, e.g. articles, movies or different product types.',
  99. url: ''
  100. },
  101. {
  102. title: 'Useful single pages',
  103. image: 'feature-15.png',
  104. description:
  105. 'Tabler allows you to create your own registration, login or wizard pages. Let users focus only on what is important.',
  106. url: ''
  107. },
  108. {
  109. title: 'Error pages',
  110. image: 'feature-16.png',
  111. description:
  112. 'Even if your customer gets lost on your website, thanks to custom error pages they will still feel safe.',
  113. url: ''
  114. }
  115. ]
  116. export default features