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.
17 lines
600 B
TypeScript
17 lines
600 B
TypeScript
'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>
|
|
);
|
|
} |