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