Comments Section 구성 요소
Tailwind CSS로 디자인된 미니멀리스트 댓글 섹션 구성 요소로, 깔끔한 선, 반응형 효과 및 다크 모드 지원을 제공합니다. 여기에는 사용자 아바타, 댓글 텍스트, 타임스탬프 및 새 댓글을 위한 간단한 입력 영역이 포함됩니다.
HTML 코드
<div class="bg-white dark:bg-gray-800 p-6 rounded-lg shadow-md">
<h2 class="text-xl font-semibold mb-4 text-gray-800 dark:text-gray-200">Comments</h2>
<div class="max-h-96 overflow-y-auto">
<div class="flex items-start mb-4">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" />
<div class="flex-1">
<div class="bg-gray-100 dark:bg-gray-700 p-3 rounded-lg">
<p class="text-gray-800 dark:text-gray-200">This is a comment from a user. It has a minimalist style.</p>
</div>
<p class="text-gray-500 dark:text-gray-400 text-sm mt-1">2 hours ago</p>
</div>
</div>
<div class="flex items-start mb-4">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/women/2.jpg" alt="User Avatar" />
<div class="flex-1">
<div class="bg-gray-100 dark:bg-gray-700 p-3 rounded-lg">
<p class="text-gray-800 dark:text-gray-200">Another comment from a different user. This design is very clean.</p>
</div>
<p class="text-gray-500 dark:text-gray-400 text-sm mt-1">3 hours ago</p>
</div>
</div>
<div class="flex items-start mb-4">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/men/3.jpg" alt="User Avatar" />
<div class="flex-1">
<div class="bg-gray-100 dark:bg-gray-700 p-3 rounded-lg">
<p class="text-gray-800 dark:text-gray-200">I really like this minimalist approach!</p>
</div>
<p class="text-gray-500 dark:text-gray-400 text-sm mt-1">5 hours ago</p>
</div>
</div>
</div>
<div class="mt-6">
<textarea class="w-full p-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:outline-none focus:ring focus:ring-blue-300 dark:focus:ring-blue-600 resize-none" rows="3" placeholder="Add a comment..."></textarea>
<button class="mt-2 bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-lg focus:outline-none focus:ring focus:ring-blue-300 dark:focus:ring-blue-600">Post Comment</button>
</div>
</div>
관련 구성 요소
Comments Section 구성 요소
깨끗하고 미니멀한 댓글 섹션 구성 요소로, 사탕/달콤한 색 구성표가 있으며 교육 플랫폼을 위해 설계되었습니다. 반응형 레이아웃, 다크 모드 지원이 특징이며 타이포그래피를 강조합니다.
Comments Section 구성 요소
레트로/빈티지 색상 팔레트가 있는 간단하고 깨끗하며 미니멀한 댓글 섹션 구성 요소로, 문서 또는 위키 사이트를 위해 설계되었습니다. 완벽하게 반응하며 다크 모드를 지원합니다.