Created
July 3, 2020 09:32
-
-
Save 1stevengrant/a3ddab7c8e3ebaebac941faca9b7a1a3 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
<div className="bg-accent pb-32"> | |
<nav className="bg-accent fixed top-0 left-0 right-0"> | |
<div className="max-w-7xl mx-auto sm:px-6 lg:px-8"> | |
<div className="border-b border-gray-700"> | |
<div className="flex items-center justify-between h-16 sm:px-0"> | |
<DesktopNav isOpen={isOpen} setOpen={setOpen} /> | |
{/* <img className="h-15 w-15" src={logo} /> */} | |
<p className="text-base text-2xl pr-3 text-white font-bold antialiased"> | |
{data.site.siteMetadata.title} | |
</p> | |
</div> | |
</div> | |
</div> | |
<MobileNav isOpen={isOpen} setOpen={setOpen} /> | |
</nav> | |
<header className="pb-10 pt-24"> | |
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div className="text-3xl leading-9 font-bold text-white"> | |
{emoji} | |
<h1 className="text-3xl ml-2 leading-9 font-bold text-white inline-block"> | |
{title} | |
</h1> | |
</div> | |
</div> | |
</header> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment