From ad432cfa5ef9a090318c27f1e4d55af31bcfcfa2 Mon Sep 17 00:00:00 2001 From: poyrazavsever Date: Tue, 10 Mar 2026 22:37:03 +0300 Subject: [PATCH] feat: update layout and enhance SiteNavbar with top icon links --- app/layout.tsx | 2 +- components/site-navbar.tsx | 287 ++++++++++++++++++++++--------------- 2 files changed, 169 insertions(+), 120 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 839d1bb..58c86b2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -49,7 +49,7 @@ export default function RootLayout({ return ( -
+
- - - - - PA - - - - -
- - - - - - - - - Social - - - Social Links - - {SOCIAL_LINKS.map((item) => ( - - - - {item.label} - - - ))} - - +
+
+ {TOP_ICON_LINKS.map((item) => ( + + + + ))}
-
- - - - Menu - - - Mobile Menu -
- - - +
+ + + + + PA + + + - +
+ - + + - - -
- {SOCIAL_LINKS.map((item) => ( + + + + Social + + + Social Links + + {SOCIAL_LINKS.map((item) => ( + - - {item.label} + + {item.label} - ))} -
-
- - -
+ + ))} + + +
- - +
+ + + + Menu + + + Mobile Menu +
+ + + + + + + + + + +
+ {SOCIAL_LINKS.map((item) => ( + + + {item.label} + + ))} +
+
+
+
+
+ + + +
); }