@ -76,13 +76,66 @@
< / div >
< / div >
< / section >
< section class = "our-values-section" >
< h1 > We are our values< / h1 >
< div class = "row gx-5" >
< div class = "col-md-6" >
< div class = "values-left" >
< p > We are passionate about creating a calm, inspiring work environment that attracts very
high-performing talent. We connect that talent with our partners, providing mutual growth opportunities.
< / p >
< div class = "values-img" >
< img src = "{{url('frontend/images/attractive-man.png')}}" id = "values-img" alt = "" >
< / div >
< / div >
< / div >
< div class = "col-md-6" >
< div class = "values-lists" >
< a onclick = "changeImg('{{url('frontend/images/attractive-man.png')}}','{{1}}')" id = "values-link{{1}}" class = "link-active" >
< h2 > Committed< / h2 >
< / a >
< a onclick = "changeImg('','{{2}}')" id = "values-link{{2}}" >
< h2 > Develop relationship & Deliver Results< / h2 >
< / a >
< a onclick = "changeImg('','{{3}}')" id = "values-link{{3}}" >
< h2 > Committed< / h2 >
< / a >
< a onclick = "changeImg('','{{4}}')" id = "values-link{{4}}" >
< h2 > Develop relationship & Deliver Results< / h2 >
< / a >
< a onclick = "changeImg('','{{5}}')" id = "values-link{{5}}" >
< h2 > Committed< / h2 >
< / a >
< a onclick = "changeImg('{{url('frontend/images/attractive-man.png')}}','{{6}}')" id = "values-link{{6}}" >
< h2 > Develop relationship & Deliver Results< / h2 >
< / a >
< / div >
< / div >
< / div >
< / section >
< section class = "lets-chat-section" >
< h1 > Let's Chat< / h1 >
< p > Thinking about starting a team? Need to augment your existing team?
We’re here to help. We work with US based companies to help them grow!
< / p >
< div class = "text-center" >
< a href = "" > Consult with us< / a >
< a href = "" > Consult with us < i class = "fa-solid fa-arrow-right fa-2xs ms-1" > < / i > < / a >
< / div >
< / section >
@endsection
@section('script')
< script >
function changeImg(img, id){
if ($('.link-active').length > 0) {
pre_id = $('.link-active')[0]['id'];
myId = document.getElementById(pre_id);
myId.classList.remove("link-active");
}
var link = document.getElementById("values-link"+ id);
link.classList.add("link-active")
var image = document.getElementById('values-img');
image.src=img
}
< / script >
@endsection