temp.pug 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. div(class='min-h-full bg-gray-50 dark:bg-gray-900 transition-colors duration-300')
  2. div(class='transition-all duration-300')
  3. header(class='bg-primary text-white shadow-lg')
  4. nav(class='container mx-auto px-4 py-4')
  5. .flex.justify-between.items-center
  6. a(href='/' class='text-2xl font-bold text-accent') Кохи Борбад
  7. .flex.items-center.space-x-4
  8. MultiLevelMenu
  9. //ThemeToggle
  10. main
  11. router-view(v-slot='{ Component }')
  12. transition(name='page-slide' mode='out-in')
  13. component(:is='Component')
  14. footer(class='bg-primary text-white py-8 mt-12')
  15. .container.mx-auto.px-4
  16. .grid.grid-cols-1.gap-8(class="md:grid-cols-3")
  17. .footer-section
  18. h3(class='text-xl font-bold text-accent mb-4') Контакты
  19. p пр. И. Сомони, 26, Душанбе
  20. p Телефон: +992 (37) 235-48-64
  21. p Email: info@borbad.tj
  22. .footer-section
  23. h3(class='text-xl font-bold text-accent mb-4') Быстрые ссылки
  24. .flex.flex-col.space-y-2
  25. a(href='/events' class='hover:text-accent transition-colors') Мероприятия
  26. a(href='/about' class='hover:text-accent transition-colors') О зале
  27. a(href='/contacts' class='hover:text-accent transition-colors') Контакты
  28. .footer-section
  29. h3(class='text-xl font-bold text-accent mb-4') Подписка
  30. p Подпишитесь на новости о мероприятиях
  31. FormValidator(placeholder='Ваш email' buttonText='Подписаться')