y4f/Shared/Chefin/NavChefin.razor

25 lines
904 B
Plaintext
Raw Normal View History

2023-05-19 13:01:53 +02:00
<nav class="navbar navbar-expand-md navbar-light mb-4 me-5 ms-5 ">
<div class="container-fluid">
@*<a class="navbar-brand" href="">Yummy4Friends</a>*@
<a class="navbar-brand" href="">
<img src="assets/Logo_new.png" alt="Yummy4Friends" width="60px" height="auto">
</a>
<ul class="navbar-nav">
<li class="nav-item">
2023-05-19 13:29:54 +02:00
<NavLink class="nav-link" href="RegistrierungA">
2023-06-05 19:26:23 +02:00
#1
2023-05-19 13:01:53 +02:00
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-person-fill" viewBox="0 0 16 16">
<path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" />
</svg>
</NavLink>
</li>
</ul>
2023-06-05 19:26:23 +02:00
2023-05-19 13:01:53 +02:00
</div>
</nav>
@code {
2023-06-05 19:26:23 +02:00
2023-05-19 13:01:53 +02:00
}