Advertisement
BennyExtreme

data.js

Feb 24th, 2023
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. export const MenuData = [
  2. {
  3. title: 'Home',
  4. url: '/',
  5. cName: 'nav-links',
  6. icon: 'fa-solid fa-house-user',
  7. },
  8. {
  9. title: 'Chi sono',
  10. url: '/chi-sono',
  11. cName: 'nav-links',
  12. },
  13. {
  14. title: 'Blog',
  15. url: '/blog',
  16. cName: 'nav-links',
  17. },
  18. {
  19. title: 'Contatti',
  20. url: '/contatti',
  21. cName: 'nav-links',
  22. icon: 'fa-solid fa-house-user',
  23. },
  24. ]
  25.  
  26. export const SliderData = [
  27. {
  28. id: 1,
  29. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  30. title: 'Title 1',
  31. subtitle: 'Subtitle 1',
  32. link: '#',
  33. },
  34. {
  35. id: 2,
  36. image: 'https://images.pexels.com/photos/1438761/pexels-photo-1438761.jpeg',
  37. title: 'Title 2',
  38. subtitle: 'Subtitle 2',
  39. },
  40. {
  41. id: 3,
  42. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  43. title: 'Title 3',
  44. subtitle: 'Subtitle 3',
  45. },
  46. {
  47. id: 4,
  48. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  49. title: 'Title 4',
  50. subtitle: 'Subtitle 4',
  51. link: '#',
  52. },
  53. {
  54. id: 5,
  55. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  56. title: 'Title 5',
  57. subtitle: 'Subtitle 5',
  58. link: '#',
  59. },
  60. ]
  61.  
  62. export const ItemData = [
  63. {
  64. id: 1,
  65. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  66. title: 'Title 1',
  67. subtitle: 'Subtitle 1',
  68. link: '#',
  69. tag: 'blog',
  70. },
  71. {
  72. id: 2,
  73. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  74. title: 'Title 2',
  75. subtitle: 'Subtitle 2',
  76. tag: 'article',
  77. },
  78. {
  79. id: 3,
  80. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  81. title: 'Title 3',
  82. subtitle: 'Subtitle 3',
  83. tag: 'article',
  84. },
  85. {
  86. id: 4,
  87. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  88. title: 'Title 4',
  89. subtitle: 'Subtitle 4',
  90. link: '#',
  91. tag: 'blog',
  92. },
  93. {
  94. id: 5,
  95. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  96. title: 'Title 5',
  97. subtitle: 'Subtitle 5',
  98. link: '#',
  99. tag: 'blog',
  100. },
  101. {
  102. id: 6,
  103. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  104. title: 'Title 6',
  105. subtitle: 'Subtitle 6',
  106. link: '#',
  107. tag: 'article',
  108. },
  109. {
  110. id: 7,
  111. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  112. title: 'Title 7',
  113. subtitle: 'Subtitle 7',
  114. tag: 'blog',
  115. },
  116. {
  117. id: 8,
  118. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  119. title: 'Title 8',
  120. subtitle: 'Subtitle 8',
  121. tag: 'blog',
  122. },
  123. {
  124. id: 9,
  125. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  126. title: 'Title 9',
  127. subtitle: 'Subtitle 9',
  128. link: '#',
  129. tag: 'blog',
  130. },
  131. {
  132. id: 10,
  133. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  134. title: 'Title 10',
  135. subtitle: 'Subtitle 10',
  136. link: '#',
  137. tag: 'article',
  138. },
  139. {
  140. id: 11,
  141. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  142. title: 'Title 11',
  143. subtitle: 'Subtitle 11',
  144. link: '#',
  145. tag: 'article',
  146. },
  147. {
  148. id: 12,
  149. image: 'https://images.pexels.com/photos/797797/pexels-photo-797797.jpeg',
  150. title: 'Title 12',
  151. subtitle: 'Subtitle 12',
  152. link: '#',
  153. tag: 'article',
  154. },
  155. ]
  156.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement