Created
January 16, 2024 22:59
-
-
Save danielotieno/edd8a5aec43e3cc473fdf68a5740a44a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 className="mt-16 flex justify-center"> | |
<p className="relative rounded-full bg-gray-50 px-4 py-1.5 text-sm leading-6 text-gray-600 ring-1 ring-inset ring-gray-900/5"> | |
<span className="hidden md:inline">Over 2500 companies use our tools to better their business.</span> | |
<a href="#" className="font-semibold text-indigo-600"> | |
<span className="absolute inset-0" aria-hidden="true" /> Read our customer stories{' '} | |
<span aria-hidden="true">→</span> | |
</a> | |
</p> | |
</div> | |
</div> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment