Files
aibuddytool/resources/views/front/layouts/navigation.blade.php
2023-11-29 21:16:13 +08:00

24 lines
976 B
PHP

<div class="container-fluid shadow-sm">
<header
class="d-grid d-lg-flex flex-wrap justify-content-center justify-content-lg-between py-2 text-center text-lg-start">
<div class="align-self-center">
<a href="{{ route('front.home') }}"
class="btn btn-link d-inline-flex text-decoration-none hover-grow text-center gap-2">
<img class="align-self-center" style="height:50px; width:auto;"
src="{{ asset('ai-buddy-tool-logo-512x512.svg') }}" alt="AIBuddyTool.com Logo">
<p class="align-self-center display-6 mb-0 font-family-zilla-slab fw-bold">
{{ config('app.name') }}
</p>
</a>
</div>
<div class="align-self-center">
<a href="{{ route('front.submit-tool') }}">Submit your AI Tool <span
class="badge text-bg-primary text-white">FREE!</span></a>
</div>
</header>
</div>