marketing / sections / logo-clouds
Grid
11-grid.jsx
export default function Example() {
return (
<div className="bg-white py-24 sm:py-32 dark:bg-gray-900">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="-mx-6 grid grid-cols-2 gap-0.5 overflow-hidden sm:mx-0 sm:rounded-2xl md:grid-cols-3">
<div className="bg-gray-400/5 p-8 sm:p-10 dark:bg-white/5">
<img
alt="Transistor"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/transistor-logo-gray-900.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain dark:hidden"
/>
<img
alt="Transistor"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/transistor-logo-white.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain not-dark:hidden"
/>
</div>
<div className="bg-gray-400/5 p-6 sm:p-10 dark:bg-white/5">
<img
alt="Reform"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/reform-logo-gray-900.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain dark:hidden"
/>
<img
alt="Reform"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/reform-logo-white.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain not-dark:hidden"
/>
</div>
<div className="bg-gray-400/5 p-6 sm:p-10 dark:bg-white/5">
<img
alt="Tuple"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/tuple-logo-gray-900.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain dark:hidden"
/>
<img
alt="Tuple"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/tuple-logo-white.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain not-dark:hidden"
/>
</div>
<div className="bg-gray-400/5 p-6 sm:p-10 dark:bg-white/5">
<img
alt="Laravel"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/laravel-logo-gray-900.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain dark:hidden"
/>
<img
alt="Laravel"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/laravel-logo-white.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain not-dark:hidden"
/>
</div>
<div className="bg-gray-400/5 p-6 sm:p-10 dark:bg-white/5">
<img
alt="SavvyCal"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/savvycal-logo-gray-900.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain dark:hidden"
/>
<img
alt="SavvyCal"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/savvycal-logo-white.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain not-dark:hidden"
/>
</div>
<div className="bg-gray-400/5 p-6 sm:p-10 dark:bg-white/5">
<img
alt="Statamic"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/statamic-logo-gray-900.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain dark:hidden"
/>
<img
alt="Statamic"
src="https://tailwindcss.com/plus-assets/img/logos/158x48/statamic-logo-white.svg"
width={158}
height={48}
className="max-h-12 w-full object-contain not-dark:hidden"
/>
</div>
</div>
</div>
</div>
)
}