9 lines
396 B
Twig
9 lines
396 B
Twig
<nav class="p-10 space-y-1 bg-[#d4d4d4] sm:flex sm:justify-end sm:space-y-0 sm:space-x-4">
|
|
{% for link in main_menu %}
|
|
<a class="block text-xl text-center transition-colors duration-200 {{ link.is_active ? 'text-blue-800 hover:text-blue-200 focus:text-blue-200' : 'text-blue-200 hover:text-blue-800 focus:text-blue-800' }}" href="#0">
|
|
{{ link.title }}
|
|
</a>
|
|
{% endfor %}
|
|
</nav>
|
|
|