A gist for first Tailwind CSS page
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 Home() { | |
return ( | |
<main className="container mx-auto px-4"> | |
<div> | |
<section className="py-12 px-4 text-center"> | |
<div className="w-full max-w-2xl mx-auto"> | |
<span className="text-sm font-semibold">Next.js + Tailwind CSS + Firebase Cloud Functions + Github Actions</span> | |
< h2 className = "text-5xl mt-2 mb-6 leading-tight font-semibold font-heading" >Project Header</h2> | |
<a className="text-indigo-600 hover:underline" href="#">Learn more »</a> | |
</div> | |
</section> | |
</div> | |
</main> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment