Brutalist 헤더 구성 요소
Tailwind CSS로 디자인된 원시적이고 대담한 헤더 구성 요소로, 밝은 테마와 어두운 테마 모두에 적합한 높은 대비와 특이한 레이아웃을 특징으로 합니다.
HTML 코드
<header class="bg-gray-900 text-white p-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<img src="https://picsum.photos/50" alt="Logo" class="w-16 h-16 rounded-full border-4 border-yellow-500">
<h1 class="text-3xl font-bold">Brutalist Header</h1>
</div>
<nav class="flex space-x-6">
<a href="#" class="text-yellow-300 hover:underline">Home</a>
<a href="#" class="text-yellow-300 hover:underline">About</a>
<a href="#" class="text-yellow-300 hover:underline">Services</a>
<a href="#" class="text-yellow-300 hover:underline">Contact</a>
</nav>
</div>
<div class="mt-4 pt-4 border-t border-yellow-500 flex flex-col space-y-2">
<h2 class="text-xl font-bold">Welcome to the Brutalist World</h2>
<p class="text-sm">This is a header component that embodies the raw and bold aesthetics of Brutalism.</p>
</div>
</header>
<style>
@media (prefers-color-scheme: dark) {
header {
background-color: #1c1917;
color: #f9fafb;
}
a {
color: #fbbf24;
}
}
</style>
관련 구성 요소
복잡한 대시보드 헤더
3D 디자인 요소, 흙색 색 구성표가 있는 복잡하고 반응이 빠른 헤더 구성 요소로, 대시보드용으로 설계되었습니다. Tailwind CSS를 사용하는 어두운 테마 지원을 포함하며 데모 이미지/아바타에 picsum.photos 및 randomuser.me 사용합니다.