18 lines
No EOL
814 B
HTML
18 lines
No EOL
814 B
HTML
<nav class="flex flex-row place-content-around h-20 bg-primary px-12">
|
|
<div class="basis-1/3 flex flex-row items-center">
|
|
<a href="/" class="flex flex-row items-center p-0">
|
|
<img src="/assets/logo.jpg" alt="logo.jpg" class="size-16 rounded-lg p-3">
|
|
<h2>Viyurz</h2>
|
|
</a>
|
|
</div>
|
|
<ul class="basis-1/3 flex flex-row justify-center items-center">
|
|
<li><h2><a href="/">Home</a></h2></li>
|
|
<li><h2><a href="mailto:viyurz@viyurz.fr">Contact</a></h2></li>
|
|
</ul>
|
|
<div class="basis-1/3 flex flex-row justify-end items-center">
|
|
<div class="grid grid-cols-2 divide-x-2 rounded-lg bg-background p-2">
|
|
<button class="px-2">English</button>
|
|
<button class="opacity-50 px-2">Français</button>
|
|
</div>
|
|
</div>
|
|
</nav> |