Skip to content

Commit

Permalink
feat: Add why_us_section Blade component for Why U
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 10, 2024
1 parent 030aef4 commit 3946094
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions resources/views/components/why_us_section.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<div>
<section class="why-us-section">
<h2>{{ $title }}</h2>
<p>{{ $description }}</p>
<div class="features">
@foreach($features as $feature)
<div class="feature-card">
<img src="{{ $feature['image'] }}" alt="{{ $feature['title'] }}">
<div class="feature-content">
<h3>{{ $feature['title'] }}</h3>
<p>{{ $feature['description'] }}</p>
</div>
</div>
@endforeach
</div>
</section>
</div>

0 comments on commit 3946094

Please sign in to comment.