Files
futurewalker/resources/views/front/layouts/partials/nav.blade.php
2023-11-20 08:51:38 +08:00

26 lines
1.0 KiB
PHP

<div class="w-full shadow-sm bg-black text-white">
<header class="container-lg lh-1 py-3">
<div class="row d-block d-md-flex justify-content-center align-items-center">
<div class="col-12 col-md-5 col-lg-4 py-2 py-md-0 text-center text-md-start">
<a class="blog-header-logo text-decoration-none text-white" href="{{ route('front.home') }}">
<div class="fw-bolder fs-3 font-family-roboto-condensed text-uppercase">FutureWalker</div>
</a>
</div>
<div class="col-12 col-md-7 col-lg-8 text-center text-md-end">
<div>Important news shaping the digital future</div>
</div>
</div>
</header>
</div>
<div class="w-full bg-dark text-white d-none d-md-block">
<div class="container-lg text-center py-2">
@foreach ($categories as $category)
<a href="#"
class="text-white mx-3 font-family-roboto-condensed text-uppercase">{{ $category->name }}</a>
@endforeach
</div>
</div>