레트로 블로그 바닥글
단색 색 구성표, 단순한 레이아웃, 반응형 디자인 및 어두운 테마 지원을 제공하는 블로그를 위한 레트로/빈티지 바닥글 구성 요소입니다.
HTML 코드
<footer class="bg-gray-200 text-gray-700 dark:bg-gray-900 dark:text-gray-300 py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
<div class="text-center md:text-left">
<p class="text-sm">© 2023 The Retro Blog. All rights reserved.</p>
</div>
<nav class="flex space-x-4">
<a href="#" class="text-sm hover:underline">Privacy Policy</a>
<a href="#" class="text-sm hover:underline">Terms of Service</a>
<a href="#" class="text-sm hover:underline">Contact Us</a>
</nav>
</div>
</div>
</footer>