Last active
June 25, 2025 20:58
-
-
Save jorgeadev/93b07ec84f2d74846bfd5b938f887cca 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 class="min-h-screen flex flex-col"> | |
| <header class="bg-red-50">Header</header> | |
| <div class="flex-1 flex flex-col sm:flex-row"> | |
| <main class="flex-1 bg-indigo-100">Content here</main> | |
| <nav class="order-first sm:w-32 bg-purple-200">Sidebar</nav> | |
| <aside class="sm:w-32 bg-yellow-100">Right Sidebar</aside> | |
| </div> | |
| <footer class="bg-gray-100">Footer</footer> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment