구성 요소 이동 경로 탐색 Paper_Jewel_Tone_Breadcrumb_Navigation

Paper_Jewel_Tone_Breadcrumb_Navigation

종이/인쇄물에서 영감을 받은 복잡한 이동 경로 탐색 구성 요소로, 보석 색조로 컨설팅/서비스 웹 사이트에 적합합니다. 풍부한 대화형 요소를 특징으로 하며 완전한 응답성과 다크 모드를 지원합니다.

미리 보기

HTML 코드

<nav class="flex justify-center px-4 py-3 bg-white dark:bg-gray-900 shadow-md sm:py-4 md:py-5" aria-label="Breadcrumb">
  <ol class="flex items-center space-x-2 sm:space-x-4 md:space-x-6 overflow-x-auto whitespace-nowrap text-sm sm:text-base lg:text-lg">
    <li class="flex items-center group">
      <a href="#home" class="flex items-center text-gray-600 dark:text-gray-400 hover:text-emerald-700 dark:hover:text-emerald-400 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-opacity-50 rounded px-1 -mx-1 py-0.5" aria-label="Home">
        <svg class="flex-shrink-0 w-4 h-4 sm:w-5 sm:h-5 mr-1.5 align-middle" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
          <path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z"></path>
        </svg>
        <span class="text-ruby-700 dark:text-ruby-400 font-semibold group-hover:underline hidden sm:inline">Home</span>
      </a>
      <svg class="flex-shrink-0 w-4 h-4 sm:w-5 sm:h-5 text-gray-400 dark:text-gray-600 mx-2 sm:mx-3" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
        <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path>
      </svg>
    </li>

    <li class="flex items-center group">
      <a href="#services" class="text-gray-600 dark:text-gray-400 hover:text-emerald-700 dark:hover:text-emerald-400 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-opacity-50 rounded px-1 -mx-1 py-0.5">
        <span class="text-sapphire-700 dark:text-sapphire-400 font-medium group-hover:underline">Services</span>
      </a>
      <svg class="flex-shrink-0 w-4 h-4 sm:w-5 sm:h-5 text-gray-400 dark:text-gray-600 mx-2 sm:mx-3" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
        <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path>
      </svg>
    </li>

    <li class="flex items-center group">
      <a href="#consulting" class="text-gray-600 dark:text-gray-400 hover:text-emerald-700 dark:hover:text-emerald-400 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-opacity-50 rounded px-1 -mx-1 py-0.5">
        <span class="text-amethyst-700 dark:text-amethyst-400 font-medium group-hover:underline">Strategic Consulting</span>
      </a>
      <svg class="flex-shrink-0 w-4 h-4 sm:w-5 sm:h-5 text-gray-400 dark:text-gray-600 mx-2 sm:mx-3" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
        <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path>
      </svg>
    </li>

    <li class="flex items-center group" aria-current="page">
      <span class="text-emerald-700 dark:text-emerald-400 font-semibold px-2 py-1 rounded-md bg-emerald-100 dark:bg-emerald-900 border border-emerald-300 dark:border-emerald-700 shadow-sm transition-colors duration-200">
        Digital Transformation
      </span>
    </li>
  </ol>
</nav>

<style>
  /* Custom colors for Jewel Tones - Add to your Tailwind config or use direct classes */
  .text-emerald-700 { color: #047857; }
  .dark .text-emerald-400 { color: #34d399; }
  .bg-emerald-100 { background-color: #d1fae5; }
  .dark .bg-emerald-900 { background-color: #064e3b; }
  .border-emerald-300 { border-color: #6ee7b7; }
  .dark .border-emerald-700 { border-color: #047857; }

  .text-ruby-700 { color: #B91C1C; }
  .dark .text-ruby-400 { color: #F87171; }
  
  .text-sapphire-700 { color: #1E40AF; }
  .dark .text-sapphire-400 { color: #60A5FA; }

  .text-amethyst-700 { color: #6B21A8; }
  .dark .text-amethyst-400 { color: #A78BFA; }
</style>

관련 구성 요소

Memphis_Rainbow_Breadcrumb_Navigation

블로그/콘텐츠 사이트에 적합한 다색 무지개 그라데이션을 특징으로 하는 대담한 Memphis Design 미학을 갖춘 간단하고 반응이 빠른 이동 경로 탐색 구성 요소입니다. 다크 모드 지원이 포함됩니다.

열다

Breadcrumb Navigation 구성 요소

Tailwind CSS를 사용하여 구축된 파스텔 색 구성표 및 어두운 테마 지원과 함께 Neumorphism 디자인 스타일을 활용하는 반응형 이동 경로 탐색 구성 요소입니다.

열다

Monospace_Developer_Breadcrumb_Navigation

모노스페이스/개발자 미학과 레트로/빈티지 색 구성표를 갖춘 반응형 이동 경로 탐색 구성 요소로, 문서 및 위키 사이트를 위해 설계되었습니다. 다크 모드 지원이 포함됩니다.

열다