Brutalist Social Media Navigation
A responsive navigation component designed in a brutalist style for social media applications, utilizing a complementary color scheme and minimal elements.
HTML Code
<nav class="bg-gray-800 dark:bg-gray-900 p-4 flex justify-between items-center">
<div class="flex items-center space-x-4">
<a href="#" class="text-white dark:text-gray-200 font-bold text-lg">Logo</a>
<ul class="flex space-x-4">
<li><a href="#" class="text-white dark:text-gray-200 hover:text-blue-500 dark:hover:text-blue-400">Home</a></li>
<li><a href="#" class="text-white dark:text-gray-200 hover:text-blue-500 dark:hover:text-blue-400">Profile</a></li>
<li><a href="#" class="text-white dark:text-gray-200 hover:text-blue-500 dark:hover:text-blue-400">Messages</a></li>
<li><a href="#" class="text-white dark:text-gray-200 hover:text-blue-500 dark:hover:text-blue-400">Settings</a></li>
</ul>
</div>
<div class="flex items-center space-x-4">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-8 h-8 rounded-full">
<a href="#" class="text-white dark:text-gray-200 font-bold">Logout</a>
</div>
</nav>
<div class="bg-gray-100 dark:bg-gray-800 p-8">
<h1 class="text-2xl font-bold text-gray-800 dark:text-gray-200 mb-4">Welcome to Our Social Media</h1>
<img src="https://picsum.photos/800/400" alt="Random Image" class="rounded-lg shadow-lg">
</div>
Related Components
Retro Social Media Navigation
Responsive Navigation Component with Dark Mode for Social Media (Retro/Vintage, Earth Tones, Moderate Complexity)
Skeuomorphic Navigation Component
A navigation component designed with skeuomorphic style, featuring a complementary color scheme, suitable for a dashboard with data visualization and control panels. It includes interactive elements for user engagement.