index.coffee 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. document.head.insertAdjacentHTML('beforeend','<style type="text/tailwindcss">'+stylFns['app/pages/Home/index.styl']+'</style>')
  2. module.exports =
  3. name: 'HomePage'
  4. render: (new Function '_ctx', '_cache', renderFns['app/pages/Home/index.pug'])()
  5. data: ->
  6. return {
  7. features: [
  8. {
  9. icon: '🎨'
  10. title: 'Широкий ассортимент'
  11. description: 'Более 1000 видов лакокрасочных материалов от проверенных производителей'
  12. }
  13. {
  14. icon: '🚚'
  15. title: 'Быстрая доставка'
  16. description: 'Доставка по всему городу в течение 24 часов после заказа'
  17. }
  18. {
  19. icon: '💯'
  20. title: 'Гарантия качества'
  21. description: 'Все товары сертифицированы и прошли контроль качества'
  22. }
  23. ]
  24. categories: [
  25. {
  26. name: 'Краски для интерьера'
  27. count: '245 товаров'
  28. image: '/images/interior-paints.jpg'
  29. }
  30. {
  31. name: 'Фасадные краски'
  32. count: '189 товаров'
  33. image: '/images/exterior-paints.jpg'
  34. }
  35. {
  36. name: 'Грунтовки'
  37. count: '156 товаров'
  38. image: '/images/primers.jpg'
  39. }
  40. {
  41. name: 'Лаки и пропитки'
  42. count: '98 товаров'
  43. image: '/images/varnishes.jpg'
  44. }
  45. ]
  46. }
  47. mounted: ->
  48. debug.log 'Home page mounted'