18 lines
897 B
PHP
18 lines
897 B
PHP
<div class="container-fluid border-top">
|
|
<footer class="container-lg">
|
|
|
|
<div class="py-3 text-center">
|
|
<div class="mb-2">© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.</div>
|
|
<ul class="list-unstyled d-flex justify-content-center">
|
|
<li class="ms-2"><a href="{{ route('front.privacy') }}">Privacy</a></li>
|
|
<li class="ms-2"><a href="{{ route('front.terms') }}">Terms</a></li>
|
|
<li class="ms-2"><a href="{{ route('front.disclaimer') }}">Disclaimer</a></li>
|
|
|
|
@if (request()->route()->getName() == 'front.home')
|
|
<li class="ms-2"><a href="https://awesomeaitools.com?utm_source=aibuddytool.com&utm_medium=footer">Awesome AI Tools <span class="badge rounded-pill bg-danger">NEW</span></a></li>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
</div>
|