Sync
This commit is contained in:
22
resources/views/front/partials/ai-tool-card.blade.php
Normal file
22
resources/views/front/partials/ai-tool-card.blade.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<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">
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<a class="fw-bold" href="#">
|
||||
<h3 class="h5 fw-bold line-clamp-1">Yada {{ $i }}</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>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
12
resources/views/front/partials/breadcrumbs.blade.php
Normal file
12
resources/views/front/partials/breadcrumbs.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<nav style="--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%236c757d'/%3E%3C/svg%3E");"
|
||||
aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
@foreach ($breadcrumbs as $breadcrumb)
|
||||
@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>
|
||||
@endif
|
||||
@endforeach
|
||||
</ol>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user