index.pug 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. div(id="app")
  2. header(class="header")
  3. nav(class="header__nav")
  4. div(class="header__nav-block")
  5. div(class="header__nav-name") {{ companyName }}
  6. div(class="header__nav-menu")
  7. div(class="header__menu-item")
  8. router-link(to="/catalog" class="header__menu-link") Каталог
  9. div(class="header__menu-item")
  10. router-link(to="/blog" class="header__menu-link") Блог
  11. div(class="header__menu-item")
  12. router-link(to="/contacts" class="header__menu-link") Контакты
  13. div(class="header__menu-item")
  14. button(
  15. @click="toggleTheme"
  16. class="header__theme-toggle"
  17. ) {{ theme === 'light' ? '🌙' : '☀️' }}
  18. main(class="main")
  19. router-view(v-slot='{ Component }')
  20. transition(name='page-slide' mode='out-in')
  21. component(:is='Component')
  22. footer(class="footer")
  23. div(class="footer__content")
  24. div(class="footer__sections")
  25. div(class="footer__section")
  26. h3(class="footer__section-title") {{ companyName }}
  27. p(class="footer__section-text") Интернет-магазин лакокрасочной продукции
  28. div(class="footer__section")
  29. h3(class="footer__section-title") Контакты
  30. p(class="footer__section-text") Email: info@braer-color.ru
  31. p(class="footer__section-text") Телефон: +7 (999) 999-99-99
  32. div(class="footer__section")
  33. h3(class="footer__section-title") Быстрые ссылки
  34. div(class="footer__links")
  35. router-link(to="/catalog" class="footer__link") Каталог
  36. router-link(to="/blog" class="footer__link") Блог
  37. router-link(to="/about" class="footer__link") О компании