레트로 빈티지 내비게이션 컴포넌트
레트로/빈티지 디자인 스타일의 탐색 구성 요소로, 대시보드를 위한 단색 색 구성표가 있습니다. 링크가 포함되어 있으며 다크 모드를 지원합니다.
HTML 코드
<nav class="bg-gray-800 p-4 shadow-md">
<div class="flex justify-between items-center">
<div class="text-white text-lg font-bold">Retro Dashboard</div>
<div class="hidden md:flex space-x-4">
<a href="#" class="text-gray-300 hover:text-white">Home</a>
<a href="#" class="text-gray-300 hover:text-white">Data</a>
<a href="#" class="text-gray-300 hover:text-white">Settings</a>
<a href="#" class="text-gray-300 hover:text-white">Profile</a>
</div>
<div class="md:hidden">
<button class="text-gray-300 hover:text-white">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7" />
</svg>
</button>
</div>
</div>
<div class="mt-4 md:hidden">
<a href="#" class="block text-gray-300 hover:text-white">Home</a>
<a href="#" class="block text-gray-300 hover:text-white">Data</a>
<a href="#" class="block text-gray-300 hover:text-white">Settings</a>
<a href="#" class="block text-gray-300 hover:text-white">Profile</a>
</div>
</nav>
<div class="p-4">
<h2 class="text-white text-2xl mb-4">Dashboard Overview</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<div class="bg-gray-700 p-4 rounded-md shadow-md">
<img src="https://picsum.photos/400/300?random=1" alt="Random Image" class="w-full h-32 object-cover rounded-md">
<h3 class="text-white mt-2">Data Point 1</h3>
<p class="text-gray-300">Description of data point 1.</p>
</div>
<div class="bg-gray-700 p-4 rounded-md shadow-md">
<img src="https://picsum.photos/400/300?random=2" alt="Random Image" class="w-full h-32 object-cover rounded-md">
<h3 class="text-white mt-2">Data Point 2</h3>
<p class="text-gray-300">Description of data point 2.</p>
</div>
<div class="bg-gray-700 p-4 rounded-md shadow-md">
<img src="https://picsum.photos/400/300?random=3" alt="Random Image" class="w-full h-32 object-cover rounded-md">
<h3 class="text-white mt-2">Data Point 3</h3>
<p class="text-gray-300">Description of data point 3.</p>
</div>
</div>
</div>
관련 구성 요소
소셜 미디어 탐색 구성 요소
소셜 미디어 인터페이스용으로 설계된 반응형 탐색 구성 요소로, Tailwind CSS와 함께 어두운 테마를 사용하여 머티리얼 디자인 미학을 특징으로 합니다.
레트로 빈티지 내비게이션 컴포넌트
80년대/90년대 스타일에서 영감을 받은 레트로/빈티지 미학으로 디자인된 반응형 내비게이션 구성 요소로, 파스텔 색상 구성표가 특징입니다. 다크 모드 지원을 포함한 소셜 미디어 인터페이스에 적합합니다.
Navigation 구성 요소
마이크로 인터랙션과 파스텔 색 구성표가 있는 블로그를 위해 설계된 간단한 탐색 구성 요소입니다. 반응형 레이아웃과 어두운 테마 지원이 특징입니다.