Alert Messages 구성 요소
블로그/콘텐츠 소비를 위해 설계된 반응형 스큐어모픽 경고 메시지 구성 요소로, 보색 구성표와 어두운 테마 지원을 특징으로 합니다.
HTML 코드
<div class="max-w-md mx-auto p-4 bg-gray-100 dark:bg-gray-800 rounded-lg shadow-lg">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Avatar" class="w-12 h-12 rounded-full mr-3">
<h2 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Alert Title</h2>
</div>
<p class="text-gray-700 dark:text-gray-300">
This is a simple alert message that mimics real-world alert styles, using complementary colors for the design.
</p>
<div class="mt-4 flex justify-end">
<img src="https://picsum.photos/150/50?random" alt="Illustration" class="rounded-md shadow-md">
</div>
</div>