Sidebar Component
A responsive sidebar component for showcasing portfolio items with engaging microinteractions and a complementary color scheme, supporting dark mode.
HTML Code
<aside class="w-64 h-full bg-white dark:bg-gray-800 shadow-lg transition-transform duration-300 ease-in-out transform hover:scale-105">
<div class="p-4">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white">Portfolio</h2>
<div class="mt-4">
<a href="#" class="block py-2 text-gray-600 dark:text-gray-300 hover:text-blue-500 dark:hover:text-blue-400 transition-colors duration-200">Home</a>
<a href="#" class="block py-2 text-gray-600 dark:text-gray-300 hover:text-blue-500 dark:hover:text-blue-400 transition-colors duration-200">Projects</a>
<a href="#" class="block py-2 text-gray-600 dark:text-gray-300 hover:text-blue-500 dark:hover:text-blue-400 transition-colors duration-200">About Me</a>
<a href="#" class="block py-2 text-gray-600 dark:text-gray-300 hover:text-blue-500 dark:hover:text-blue-400 transition-colors duration-200">Contact</a>
</div>
</div>
<div class="flex flex-col items-center px-4 py-4">
<img src="https://picsum.photos/80/80" alt="Portfolio Avatar" class="rounded-full border-2 border-blue-500 dark:border-blue-400 mb-2" />
<h3 class="text-lg font-medium text-gray-800 dark:text-white">John Doe</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">Web Developer</p>
</div>
</aside>
Related Components
3D_Sidebar_Documentation_Wiki
A complex, 3D-inspired responsive sidebar component for documentation and wiki sites, using warm neutrals with full dark mode support.
Neon_Glow_Grayscale_Sports_Sidebar
A complex, responsive sidebar component for sports/fitness applications, featuring neon/glow effects within a grayscale color scheme. Includes dark mode support and interactive elements like profile, navigation, teams, and settings.
Sidebar Component
A responsive sidebar component using Tailwind CSS, with Material Design principles and dark theme support. Includes a header with a logo and title, and a navigation menu with links.