dealhub/resources/views/components/why-dealhub.blade.php

35 lines
1.5 KiB
PHP

<section class="wrapper mb-15">
<h2 class="mt-15">Why Choose {{config('app.name')}}?</h2>
<p class="text-accent-600 text-center mt-3 mb-10">
A trusted platform connecting you with verified experts who share the best deals, <br />
services, and opportunities in your area.
</p>
<section class="grid grid-cols-1 md:grid-cols-3 gap-8">
<x-ui.card>
<div class="p-4 rounded-lg bg-blue-100 text-blue-700 w-fit">
<x-heroicon-o-shield-check class="w-8"/>
</div>
<h3 class="font-bold">Verified Brokers</h3>
<p class="text-accent-600 text-md">All brokers are verified and vetted to ensure trustworthy recommendations and deals.</p>
</x-ui.card>
<x-ui.card>
<div class="p-4 rounded-lg bg-[#F0EBFF] text-[#9470F9] w-fit">
<x-heroicon-o-arrow-trending-up class="w-8"/>
</div>
<h3 class="font-bold">Trending Recommendations</h3>
<p class="text-accent-600 text-md">Discover what's hot and trending based on real user interactions and feedback.</p>
</x-ui.card>
<x-ui.card>
<div class="p-4 rounded-lg bg-[#F9EBF3] text-[#DB5A84] w-fit">
<x-heroicon-o-magnifying-glass class="w-8"/>
</div>
<h3 class="font-bold">Smart discovery</h3>
<p class="text-accent-600 text-md">Find exactly what you need with our intelligent search and category filtering.</p>
</x-ui.card>
</section>
</section>