?
@extends('homepage.layout-marketplace', [
'admintitle' => $seoTitle ?? '',
'summary' => $seoDesc ?? '',
'ogimage' => $fistImage ?? '',
'imagepath' => 'storage/contentimages',
])
@section('content')
<section class="common-header">
<div class="header-content">
<img class="../userassets/bkg.jpg">
</div>
</section>
<section class="homeabout about-inside">
<div class="container">
<div class="row align-items-center g-5">
<div class="header-title">
<h2>{{ $title ?? '' }}</h2>
</div>
<div class="row">
@foreach ($content as $contentblock)
<div class="col-lg-12 col-md-12 col-sm-12 about-img mt-4">
<div class="cms">
<div class="aboutimg">
<div class="image-container">
@if (!empty($contentblock->image1))
<img class="img-fluid"
src="{{ url('') }}/storage/contentimages/{{ $contentblock->image1 ?? 'default-cms.png' }}"
alt="{{ $contentblock->title }}" title="{{ $contentblock->title }}">
@else
<img class=""
src="{{ url('') }}/storage/contentimages/default-cms.jpg"
alt="{{ $contentblock->title }}" title="{{ $contentblock->title }}">
@endif
</div>
</div>
<div class="commontext">
<h5>{{ $contentblock->subtitle }} </h5>
{{-- <h2> {{ $contentblock->title }} <h2> --}}
<!-- <h5><b> </b></h5> -->
<p> {!! $newDescription !!}</p>
{{-- @if (!empty($contentblock->image1))
<img class='third-image' id='third-image' src="{{ url('storage/contentimages/') }}/{{ $contentblock->image1 ?: 'aboutimg.png' }}"
alt="{{ $contentblock->title }}" title="{{ $contentblock->title }}">
@endif
--}}
{{-- @if (!empty($contentblock->document1))
<a href="{{url('')}}/storage/contentimages/{{ $contentblock->document1 ?? '' }}" download>Download</a>
@endif --}}
<div class="btnblock mt-4">
<a href="{{ url('contact-us') }}" class="btn btn-primary ">For More Question's <i
class="bi bi-arrow-up-right"></i></a>
</div>
</div>
</div>
</div>
@endforeach
</div>
</div>
</section>
<!--
<section class="ask-question">
<div class="container">
<div class="commontext text-center mb-4">
<h2>Frequently asked questions</h2>
</div>
<div class="row g-5 text-center row-start">
<div class="col-lg-8 col-md-6 col-sm-12 ">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Accordion Item #1
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" data-bs-parent="#accordionExample">
<div class="accordion-body">
This is the first item's accordion body. It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the though the transition does limit overflow.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Accordion Item #2
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="accordion-body">
This is the first item's accordion body. It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the though the transition does limit overflow.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Accordion Item #3
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="accordion-body">
This is the first item's accordion body. It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the though the transition does limit overflow.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 ">
<img class="img-fluid" src="../userassets/askques.png">
</div>
</section> -->
<div class="container">
<!-- <div class="page-cta">
<div class="row g-2 justify-content-center align-items-center">
<div class="col-lg-7 col-md-9 text-center ">
<h4 class="text-white"> <img class="ctaimg img-fluid" src="../userassets/contactimg.png"> Let's talk about how we can transform your business!</h4>
</div>
<div class=" col-lg-5">
<div class="feature-box ">
<div class="feature-box-icon">
<i class="bi bi-envelope icon-very-medium text-white"></i>
</div>
<div class="feature-box-content ">
<span class="text-white">Interested in working?</span>
<h6 class="d-inline-block fw-600 mb-0"><a href="mailto:hello@domain.com" class="">hello@domain.com</a></h6>
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
@if (str_contains(url()->current(), '/landing-page'))
<section class="page-cta">
@include('cms.custom-design-lead-capture')
</section>
@endif
@stop