Created
June 29, 2020 12:48
-
-
Save merelinguist/dd04f4521f29a9c27e93ef9e0359f2cc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<nav className="bg-white border-b border-gray-200"> | |
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8"> | |
<div className="flex justify-between h-16 "> | |
<div className="flex items-center flex-shrink-0"> | |
<img | |
className="w-8 h-8 " | |
src="https://tailwindui.com/img/logos/workflow-mark-on-white.svg" | |
alt="Workflow logo" | |
/> | |
</div> | |
<div className="flex items-center text-sm font-medium leading-5 "> | |
Hello | |
</div> | |
<div className="flex items-center space-x-4"> | |
<div className="flex overflow-hidden"> | |
<img | |
className="inline-block w-8 h-8 text-white rounded-full shadow-solid" | |
src="https://images.unsplash.com/photo-1491528323818-fdd1faba62cc?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" | |
alt="" | |
/> | |
<img | |
className="inline-block w-8 h-8 -ml-2 text-white rounded-full shadow-solid" | |
src="https://images.unsplash.com/photo-1550525811-e5869dd03032?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" | |
alt="" | |
/> | |
<img | |
className="inline-block w-8 h-8 -ml-2 text-white rounded-full shadow-solid" | |
src="https://images.unsplash.com/photo-1500648767791-00dcc994a43e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2.25&w=256&h=256&q=80" | |
alt="" | |
/> | |
<img | |
className="inline-block w-8 h-8 -ml-2 text-white rounded-full shadow-solid" | |
src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" | |
alt="" | |
/> | |
</div> | |
<button | |
type="button" | |
className="inline-flex items-center px-3 py-2 text-sm font-medium leading-4 text-indigo-700 transition duration-150 ease-in-out bg-indigo-100 border border-transparent rounded-md hover:bg-indigo-50 focus:outline-none focus:border-indigo-300 focus:shadow-outline-indigo active:bg-indigo-200" | |
> | |
Share | |
</button> | |
</div> | |
</div> | |
</div> | |
</nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment