Dashboards 구성 요소
포트폴리오를 위한 간단한 단색 다크 모드 대시보드 구성 요소로, Tailwind CSS로 구축되었습니다. 반응형 디자인이 특징이며 매끄럽고 미니멀한 룩을 위해 단일 색상의 다양한 음영을 사용합니다.
HTML 코드
<div class="min-h-screen bg-gray-900 text-gray-100 p-8">
<div class="max-w-7xl mx-auto">
<h1 class="text-4xl font-bold mb-8 text-gray-500">Dashboard</h1>
<!-- Stats Section -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12">
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<h2 class="text-xl font-semibold text-gray-400">Projects Completed</h2>
<p class="text-5xl font-bold text-gray-300 mt-2">42</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<h2 class="text-xl font-semibold text-gray-400">Clients</h2>
<p class="text-5xl font-bold text-gray-300 mt-2">15</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<h2 class="text-xl font-semibold text-gray-400">Awards</h2>
<p class="text-5xl font-bold text-gray-300 mt-2">3</p>
</div>
</div>
<!-- Recent Work Section -->
<div class="bg-gray-800 p-8 rounded-lg shadow-lg mb-12">
<h2 class="text-3xl font-semibold text-gray-400 mb-6">Recent Work</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-gray-700 rounded-lg overflow-hidden shadow-md">
<img src="https://picsum.photos/seed/project1/400/250" alt="Project 1" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-semibold text-gray-300">Project Alpha</h3>
<p class="text-gray-400 mt-2">A sleek web design for a tech startup.</p>
</div>
</div>
<div class="bg-gray-700 rounded-lg overflow-hidden shadow-md">
<img src="https://picsum.photos/seed/project2/400/250" alt="Project 2" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-semibold text-gray-300">Project Beta</h3>
<p class="text-gray-400 mt-2">Mobile app development for an e-commerce brand.</p>
</div>
</div>
<div class="bg-gray-700 rounded-lg overflow-hidden shadow-md">
<img src="https://picsum.photos/seed/project3/400/250" alt="Project 3" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-semibold text-gray-300">Project Gamma</h3>
<p class="text-gray-400 mt-2">Branding and logo design for a local business.</p>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="bg-gray-800 p-8 rounded-lg shadow-lg">
<h2 class="text-3xl font-semibold text-gray-400 mb-6">Testimonials</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-gray-700 p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client 1" class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-semibold text-gray-300">John Doe</p>
<p class="text-sm text-gray-400">CEO, Tech Solutions</p>
</div>
</div>
<p class="text-gray-400 italic">"The work delivered was exceptional and exceeded our expectations. Highly recommend!"</p>
</div>
<div class="bg-gray-700 p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client 2" class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-semibold text-gray-300">Jane Smith</p>
<p class="text-sm text-gray-400">Marketing Director, Global Corp</p>
</div>
</div>
<p class="text-gray-400 italic">"Professional, timely, and truly understood our vision. A pleasure to work with."</p>
</div>
</div>
</div>
</div>
</div>
관련 구성 요소
Brutalist Grayscale Dashboard 구성 요소
비즈니스/기업 웹 사이트를 위한 단순하고 브루탈리즘 스타일의 그레이스케일 대시보드 레이아웃으로, 다크 모드 지원으로 반응하며 Tailwind CSS로 구축되었습니다.
소셜 미디어 대시보드
Tailwind CSS를 사용하여 마이크로 인터랙션, 보색 구성표, 적당한 복잡성 및 어두운 테마를 지원하는 반응형 소셜 미디어 대시보드 구성 요소입니다. randomuser.me 의 아바타가 포함된 사용자 프로필과 picsum.photos의 이미지가 포함된 피드가 포함됩니다.