Inital Commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
@extends('client.aarav.partials.layout')
|
||||
@section('header')
|
||||
<title>Clients - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
<p class="text-light">Home / Industries Served</p>
|
||||
<p class="medium-text text-light">List of Industries</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients partners section-padding custom-color position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="vstack gap-3 pt-3">
|
||||
<div class="row g-3 text-center">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="col-md-2 white-bg>">
|
||||
<a href="{{site_url($client->logo)}}" data-fancybox="galleryc1">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($client->logo)}}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
Reference in New Issue
Block a user