From 106fad8fa6ee8a3111a2ccfcd22034ce077c0ef5 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Tue, 25 Mar 2025 21:41:09 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20feat(header):=20add=20toolbar=20?= =?UTF-8?q?component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- components/header/toolbar.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 components/header/toolbar.tsx diff --git a/components/header/toolbar.tsx b/components/header/toolbar.tsx new file mode 100644 index 0000000..97f2a8b --- /dev/null +++ b/components/header/toolbar.tsx @@ -0,0 +1,17 @@ +'use client'; + +export default function BlogArea() { + return ( +
+

Software Engineer | HomeLab | Nerd

+
+
    +
  • email
  • +
  • rss
  • +
  • support
  • +
  • settings
  • +
+
+
+ ); +} \ No newline at end of file