This commit is contained in:
2023-11-28 04:39:36 +08:00
parent a9ac0e48b3
commit dc37274b6c
86 changed files with 2106 additions and 191 deletions

View File

@@ -1,22 +1,48 @@
<div class="card border-0 shadow hover-grow">
<div class="ratio ratio-16x9">
<a href="#">
<img class="card-img-top" src="https://placekitten.com/g/1024/576">
<div class="card border-0 shadow hover-grow" style="height: 100%;">
<div class="ratio ratio-16x9 shadow">
<a href="{{ route('front.aitool.show', ['ai_tool_slug' => $ai_tool->slug]) }}">
<img class="card-img-top" src="{{ $ai_tool->screenshot_img }}">
</a>
</div>
<div class="card-body">
<a class="fw-bold" href="#">
<h3 class="h5 fw-bold line-clamp-1">Yada {{ $i }}</h3>
<a class="fw-bold" href="{{ route('front.aitool.show', ['ai_tool_slug' => $ai_tool->slug]) }}">
<h3 class="h5 fw-bold line-clamp-1">{{ $ai_tool->tool_name }}</h3>
</a>
<p class="line-clamp-2">Rewin.ai is an AI tool that helps content creators generate unique and engaging scripts
for their chicken rice that is very tasty.</p>
<div class="d-flex">
<a class="btn btn-outline-dark btn-sm border-2 px-2 py-1 rounded-pill text-decoration-none">Light</a>
<p class="line-clamp-2 mb-2">{!! str_first_sentence($ai_tool->summary) !!}</p>
<div class="mb-3 d-flex gap-1">
<span class="badge rounded-pill text-bg-highlighter-yellow">
<i class="bi bi-currency-dollar"></i> {{ $ai_tool->pricing_type }}
</span>
<span class="badge rounded-pill text-bg-highlighter-orange">
<i class="bi bi-globe"></i>
@if ($ai_tool->is_app_web_both == 'both')
App & Web
@else
{{ ucwords($ai_tool->is_app_web_both) }}
@endif
</span>
</div>
<div class="d-flex flex-wrap gap-1">
@foreach ($ai_tool->keywords as $keyword)
@if ($loop->iteration <= 3)
<a href="{{ get_route_search_result($keyword->value_lowercased) }}"
class="btn btn-outline-dark btn-sm border-2 px-2 py-1 rounded-pill text-decoration-none text-nowrap">{{ $keyword->value }}</a>
@else
<a href="{{ route('front.discover.home') }}"
class="btn btn-outline-dark btn-sm border-2 px-2 py-1 rounded-pill text-decoration-none text-nowrap">
+ {{ $ai_tool->keywords->count() - 3 }} more
</a>
@break
@endif
@endforeach
</div>
</div>
</div>

View File

@@ -5,8 +5,17 @@
@if ($loop->last)
<li class="breadcrumb-item active" aria-current="page">{{ $breadcrumb['name'] }}</li>
@else
<li class="breadcrumb-item"><a href="{{ $breadcrumb['url'] }}">{{ $breadcrumb['name'] }}</a></li>
@if (!is_empty($breadcrumb['url']))
<li class="breadcrumb-item text-primary"><a
href="{{ $breadcrumb['url'] }}">{{ $breadcrumb['name'] }}</a></li>
@else
<li class="breadcrumb-item text-secondary">{{ $breadcrumb['name'] }}</li>
@endif
@endif
@endforeach
</ol>
</nav>
@push('top_head')
{!! $breadcrumb_context !!}
@endpush

View File

@@ -0,0 +1,8 @@
<form action="{{ route('front.search.post') }}" method="POST"
class="form-inline d-flex justify-content-center border rounded-pill p-2">
@csrf
<input class="form-control form-control-lg border-0 rounded-pill" type="search" placeholder="Search AI Tools"
name="query" value="{{ session()->get('query') }}" aria-label="Search">
<button class="btn btn-lg btn-primary bg-gradient text-white rounded-pill ms-2 text-nowrap px-4 fw-bold"
type="submit">Search with Buddy AI </button>
</form>

View File

@@ -0,0 +1,34 @@
<aside class="p-4 mb-3 bg-white border-primary text-secondary rounded-3 shadow-sm">
<p class="h4 font-family-roboto-condensed fw-bold text-primary">About aibuddytool.com</p>
<p class="mb-0">
AI Buddy Tool is your go-to platform for exploring the world of artificial intelligence. Centered around
<b>Buddy AI</b>, our intuitive AI-powered search assistant, we make discovering and understanding AI tools
effortless and engaging. Whether you're a tech enthusiast or a curious explorer, our platform simplifies AI,
offering you a seamless experience in finding the perfect AI solutions for your needs. Join us to unlock AI's
potential and see how it can transform your world. 🌟🤖💡
</p>
</aside>
<aside class="mb-3">
<div class="text-secondary small mb-1">Our sponsors</div>
<div style="--bs-aspect-ratio: 66.67%;" class="ratio ratio-1x1 rounded-2 shadow-sm">
<a target="_blank" href="https://futurewalker.co?utm_source=external&utm_medium=sidebar&utm_campaign=aibuddytool&ref=aibuddytool">
<img class="img-fluid rounded-2" src="https://cdn.futurewalker.co/futurewalker-600x400-banner.webp" alt="Futurewalker.co: 1 minute AI + tech news bites worth every second">
</a>
</div>
</aside>
<aside class="mb-3">
<form action="{{ route('front.search.post') }}" method="POST"
class="form-inline d-flex justify-content-center">
@csrf
<input class="form-control form-control-lg " type="search" placeholder="Search AI Tools"
name="query" value="{{ session()->get('query') }}" aria-label="Search">
<button class="btn btn-outline-primary bg-gradient ms-2 text-nowrap px-2 fw-bold border-2"
type="submit">
<i class="bi bi-search"></i><br>
Search
</button>
</form>
</aside>