| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- document.head.insertAdjacentHTML('beforeend','<style type="text/tailwindcss">'+stylFns['app/pages/Home/index.styl']+'</style>')
- module.exports =
- name: 'HomePage'
-
- render: (new Function '_ctx', '_cache', renderFns['app/pages/Home/index.pug'])()
-
- data: ->
- return {
- features: [
- {
- icon: '🎨'
- title: 'Широкий ассортимент'
- description: 'Более 1000 видов лакокрасочных материалов от проверенных производителей'
- }
- {
- icon: '🚚'
- title: 'Быстрая доставка'
- description: 'Доставка по всему городу в течение 24 часов после заказа'
- }
- {
- icon: '💯'
- title: 'Гарантия качества'
- description: 'Все товары сертифицированы и прошли контроль качества'
- }
- ]
- categories: [
- {
- name: 'Краски для интерьера'
- count: '245 товаров'
- image: '/images/interior-paints.jpg'
- }
- {
- name: 'Фасадные краски'
- count: '189 товаров'
- image: '/images/exterior-paints.jpg'
- }
- {
- name: 'Грунтовки'
- count: '156 товаров'
- image: '/images/primers.jpg'
- }
- {
- name: 'Лаки и пропитки'
- count: '98 товаров'
- image: '/images/varnishes.jpg'
- }
- ]
- }
-
- mounted: ->
- debug.log 'Home page mounted'
|