From ff456ef4d68f7726677fd2db650dfe5f072d1f5a Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Sun, 8 Feb 2026 21:27:42 +0100 Subject: [PATCH] refactor: remove Tools page and associated link from layout, streamlining navigation --- app/layout-content.tsx | 8 -------- app/tools/page.tsx | 15 --------------- 2 files changed, 23 deletions(-) delete mode 100644 app/tools/page.tsx diff --git a/app/layout-content.tsx b/app/layout-content.tsx index 2e9098a..320c367 100644 --- a/app/layout-content.tsx +++ b/app/layout-content.tsx @@ -73,14 +73,6 @@ export default function LayoutContent({ children }: { children: React.ReactNode Features )} - {auth.user && ( - - Tools - - )} } /> diff --git a/app/tools/page.tsx b/app/tools/page.tsx deleted file mode 100644 index e33bf6d..0000000 --- a/app/tools/page.tsx +++ /dev/null @@ -1,15 +0,0 @@ -'use client' - -import UtmBuilder from '@/components/tools/UtmBuilder' - -export default function ToolsPage() { - return ( -
-

Tools

-
-

UTM Campaign Builder

- -
-
- ) -}