templates/galilea/import/components/testimonial-slide.twig line 1

  1. <div class="flex flex-col flex-none gap-2 w-full text-white lg:flex-row overflow-clip">
  2.     <div class="relative z-10 flex-none lg:basis-2/5">
  3.         <img src="{{ image }}" alt="{{ name }}" class="block object-cover object-center rounded-2xl size-full">
  4.     </div>
  5.     <div class="p-4 rounded-2xl transition-all duration-500 lg:py-20 lg:px-10 bg-brand-50" :class="{'opacity-0 max-lg:-translate-y-full lg:-translate-x-full': !slidesInView.includes({{ loop.index - 1 }})}">
  6.         <div class="text-base lg:text-3xl lg:leading-[1.6]">{{ text }}</div>
  7.         <div class="flex flex-col pt-8 lg:flex-row lg:items-end lg:pt-24">
  8.             <div>
  9.                 <div class="font-bold tracking-wider uppercase lg:text-xl">{{ name }}</div>
  10.                 <div class="mt-4 leading-none text-white/70">{{ position }}</div>
  11.             </div>
  12.             <div class="lg:ml-auto">
  13.                 <img src="{{ logo }}" class="block object-contain object-bottom w-40 h-20">
  14.             </div>
  15.         </div>
  16.     </div>
  17. </div>