blob: 7a508483ac94d1d8635f0bc27295269fa4c80a5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<nav class="bg-white border-gray-200">
<div class="w-full flex flex-wrap items-center justify-between p-4">
<a href="#" class="rtl:space-x-reverse">
<%= image_tag '/img/AL_long_logo_black_grey.png', size: "250" %>
</a>
<div class="w-full md:block md:w-auto" id="navbar-default">
<ul class="font-medium flex flex-col p-4 md:p-0 mt-4 border rounded-lg md:flex-row md:space-x-8 rtl:space-x-reverse md:mt-0 md:border-0 md:bg-white">
<li>
<a href="#" class="block py-2 px-3 text-black aria-current="page">Home</a>
</li>
<li>
<a href="#" class="block py-2 px-3 rounded">About</a>
</li>
<li
<a href="#" class="block py-2 px-3 rounded">Services</a>
</li>
<li>
<a href="#" class="block py-2 px-3 rounded">Pricing</a>
</li>
<li>
<a href="#" class="block py-2 px-3 rounde">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
|