등급 시스템 구성 요소
레트로/빈티지 스타일로 디자인된 등급 시스템 구성 요소로, 보색 구성표와 블로그 콘텐츠를 위한 복잡한 인터페이스를 활용합니다. 이 구성 요소는 다크 모드를 지원하며 Tailwind CSS를 사용하여 반응합니다.
HTML 코드
<div class="max-w-md mx-auto bg-gray-50 dark:bg-gray-800 rounded-lg shadow-lg p-6 mt-10">
<h2 class="text-center text-2xl font-bold text-gray-800 dark:text-gray-200 mb-4">Rate Our Content</h2>
<div class="flex items-center justify-center mb-6">
<img src="https://picsum.photos/60/60" alt="Blog Post" class="rounded-full border-2 border-blue-500 mr-3">
<div>
<p class="text-lg text-gray-700 dark:text-gray-300">Fantastic Blog Post Title</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Published on January 1, 2023</p>
</div>
</div>
<div class="flex justify-center mb-6">
<span class="text-yellow-400">★</span>
<span class="text-yellow-400">★</span>
<span class="text-yellow-400">★</span>
<span class="text-yellow-400">★</span>
<span class="text-gray-300">★</span>
</div>
<textarea class="w-full h-24 p-3 border border-blue-400 rounded-lg dark:bg-gray-700 dark:border-gray-600 dark:text-gray-200" placeholder="Leave your feedback here..."></textarea>
<button class="w-full mt-3 py-2 bg-blue-500 hover:bg-blue-600 text-white rounded-lg transition duration-300">Submit Rating</button>
<div class="flex items-center justify-between mt-4 text-gray-700 dark:text-gray-300">
<span>👍 120 Likes</span>
<span>💔 5 Dislikes</span>
</div>
</div>