tailwind pin footer to bottom code example
Example: how to fix the footer at the bottom of the page tailwind
<body class="flex flex-col min-h-screen ">
<header>
Navigation bar
</header>
<main class="flex-grow">
Page content
</main>
<footer>
Social links
</footer>
</body>