Created
December 12, 2024 12:54
-
-
Save xfwil/0b714b3b3f1e84cd5380c93f94892d07 to your computer and use it in GitHub Desktop.
TailwindCSS Center Easily
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
export default function Home() { | |
return ( | |
<div className="md:container md:mx-auto px-4"> | |
<div className="flex flex-col items-center justify-center h-screen"> | |
<h1 className="text-4xl font-bold">Hello World</h1> | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment