Komponenten zur Verbesserung der Navigation
Eine 3D-entworfene Navigationskomponente mit einem analogen Farbschema, mittlerer Komplexität, geeignet für die Visualisierung von Dashboard-Daten und Bedienfeldern.
HTML-Code
<nav class="bg-gray-800 dark:bg-gray-900 p-4 rounded-lg shadow-lg">
<div class="container mx-auto flex items-center justify-between">
<h1 class="text-white text-2xl font-bold">Dashboard</h1>
<div class="hidden md:flex space-x-4">
<a href="#" class="text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Home</a>
<a href="#" class="text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Reports</a>
<a href="#" class="text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Analytics</a>
<a href="#" class="text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Settings</a>
</div>
<div class="md:hidden flex items-center">
<button class="text-gray-300 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<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 py-2 px-3 rounded-md transition duration-300 ease-in-out transform hover:scale-105">Home</a>
<a href="#" class="block text-gray-300 hover:text-white py-2 px-3 rounded-md transition duration-300 ease-in-out transform hover:scale-105">Reports</a>
<a href="#" class="block text-gray-300 hover:text-white py-2 px-3 rounded-md transition duration-300 ease-in-out transform hover:scale-105">Analytics</a>
<a href="#" class="block text-gray-300 hover:text-white py-2 px-3 rounded-md transition duration-300 ease-in-out transform hover:scale-105">Settings</a>
</div>
<div class="flex items-center mt-4">
<img src="https://randomuser.me/api/portraits/men/51.jpg" alt="Avatar" class="w-10 h-10 rounded-full border-2 border-gray-700 dark:border-gray-300 mr-3">
<div class="text-white">
<p class="text-sm">John Doe</p>
<p class="text-xs text-gray-400">Admin</p>
</div>
</div>
<div class="mt-4 bg-gray-700 dark:bg-gray-800 rounded-lg shadow-md p-4">
<h2 class="text-white text-lg font-semibold">Quick Links</h2>
<ul class="mt-2 space-y-2">
<li><a href="#" class="block text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Profile</a></li>
<li><a href="#" class="block text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Messages</a></li>
<li><a href="#" class="block text-gray-300 hover:text-white transition duration-300 ease-in-out transform hover:scale-105">Alerts</a></li>
</ul>
</div>
</nav>
Verwandte Komponenten
Komponenten zur Verbesserung der Navigation
Eine Navigationskomponente, die mit Skeuomorphismus entwickelt wurde und digitale Elemente enthält, die reale Gegenstücke nachahmen. Es wird mit Tailwind CSS mit responsiven Effekten und Unterstützung für dunkle Themen gestaltet.
Komponente zur Verbesserung der Navigation
Eine reaktionsschnelle Navigationskomponente, die für ein Portfolio entwickelt wurde und einen Brutalismus-Stil mit einem pastellfarbenen Farbschema und Unterstützung für den Dunkelmodus verwendet.
Komponenten zur Verbesserung der Navigation
Eine einfache Komponente zur Verbesserung der Navigation im Dunkelmodus zur Präsentation eines Portfolios mit Tailwind CSS.