This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/react/components/marketing/sections/logo-clouds/simple.jsx

46 lines
1.7 KiB
React
Raw Normal View History

2024-01-24 19:02:44 +08:00
export default function Example() {
return (
<div className="bg-white py-24 sm:py-32">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto grid max-w-lg grid-cols-4 items-center gap-x-8 gap-y-12 sm:max-w-xl sm:grid-cols-6 sm:gap-x-10 sm:gap-y-14 lg:mx-0 lg:max-w-none lg:grid-cols-5">
<img
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1"
src="https://tailwindui.com/img/logos/158x48/transistor-logo-gray-900.svg"
alt="Transistor"
width={158}
height={48}
/>
<img
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1"
src="https://tailwindui.com/img/logos/158x48/reform-logo-gray-900.svg"
alt="Reform"
width={158}
height={48}
/>
<img
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1"
src="https://tailwindui.com/img/logos/158x48/tuple-logo-gray-900.svg"
alt="Tuple"
width={158}
height={48}
/>
<img
className="col-span-2 max-h-12 w-full object-contain sm:col-start-2 lg:col-span-1"
src="https://tailwindui.com/img/logos/158x48/savvycal-logo-gray-900.svg"
alt="SavvyCal"
width={158}
height={48}
/>
<img
className="col-span-2 col-start-2 max-h-12 w-full object-contain sm:col-start-auto lg:col-span-1"
src="https://tailwindui.com/img/logos/158x48/statamic-logo-gray-900.svg"
alt="Statamic"
width={158}
height={48}
/>
</div>
</div>
</div>
)
}