From 4d52d87341a47bdfc1fcf20d5de3fc39e8e0bb00 Mon Sep 17 00:00:00 2001 From: Simone Cavalli Date: Sun, 31 May 2026 20:09:32 +0200 Subject: [PATCH] =?UTF-8?q?chore(06-01):=20delete=20NavBar.tsx=20=E2=80=94?= =?UTF-8?q?=20replaced=20by=20AdminSidebar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - NavBar is no longer imported anywhere (layout.tsx updated in prior task) - tsc --noEmit and npm run build both pass clean --- src/components/admin/NavBar.tsx | 44 --------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/components/admin/NavBar.tsx diff --git a/src/components/admin/NavBar.tsx b/src/components/admin/NavBar.tsx deleted file mode 100644 index 4999fca..0000000 --- a/src/components/admin/NavBar.tsx +++ /dev/null @@ -1,44 +0,0 @@ -"use client"; - -import Link from "next/link"; -import { signOut } from "next-auth/react"; -import { Button } from "@/components/ui/button"; - -export function NavBar() { - return ( - - ); -}