🎨 feat(header): add toolbar component

Adds a new toolbar component to the header section. This component
displays the user's profile information and provides links to various
sections of the application, such as email, RSS, support, and settings.
The toolbar is designed to be responsive and visually appealing, with a
clean and modern layout.
This commit is contained in:
AderKonstantin
2025-03-25 21:41:09 +03:00
parent 326439fd41
commit 106fad8fa6

View File

@@ -0,0 +1,17 @@
'use client';
export default function BlogArea() {
return (
<div className="flex h-24 justify-between items-center border-t-white border-t">
<div className=""><p>Software Engineer | HomeLab | Nerd</p></div>
<div className="">
<ul className="">
<li className="inline ml-2">email</li>
<li className="inline ml-2">rss</li>
<li className="inline ml-2">support</li>
<li className="inline ml-2">settings</li>
</ul>
</div>
</div>
);
}