🎨 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:
17
components/header/toolbar.tsx
Normal file
17
components/header/toolbar.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user