Problem: Slim footer.
Solution#
<footer class="flex flex-wrap items-center justify-between gap-4 border-t py-6 text-sm text-slate-500">
<p>© 2026 RRC Development</p>
<nav class="flex gap-6"><a href="#">Privacy</a><a href="#">Terms</a></nav>
</footer>Why this works#
One row, no columns.
Variants#
- Responsive: add screen prefixes to the core classes
- Dark: pair each color utility with its dark: twin
- Animated: add
transition+ a state variant for motion
Related recipes#
cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns
