From 3ff67052982dfd502e478b6e960a05aa1d55b2cc Mon Sep 17 00:00:00 2001 From: karl Date: Fri, 28 Mar 2025 14:16:00 -0400 Subject: [PATCH] add pages' --- app/collections/industrial/page.tsx | 3 +++ app/collections/industrial/pallet-trucks-forklifts/page.tsx | 3 +++ app/collections/industrial/warehouse-racks/page.tsx | 3 +++ components/layout/navbar/NavbarV2.tsx | 1 - next.config.ts | 1 + 5 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 app/collections/industrial/page.tsx create mode 100644 app/collections/industrial/pallet-trucks-forklifts/page.tsx create mode 100644 app/collections/industrial/warehouse-racks/page.tsx diff --git a/app/collections/industrial/page.tsx b/app/collections/industrial/page.tsx new file mode 100644 index 000000000..7d06882da --- /dev/null +++ b/app/collections/industrial/page.tsx @@ -0,0 +1,3 @@ +export default function Industrial() { + return
Industrial
+} diff --git a/app/collections/industrial/pallet-trucks-forklifts/page.tsx b/app/collections/industrial/pallet-trucks-forklifts/page.tsx new file mode 100644 index 000000000..2de8bba5c --- /dev/null +++ b/app/collections/industrial/pallet-trucks-forklifts/page.tsx @@ -0,0 +1,3 @@ +export default function PalletTrucksForklifts() { + return
Pallet Trucks & Forklifts
+} diff --git a/app/collections/industrial/warehouse-racks/page.tsx b/app/collections/industrial/warehouse-racks/page.tsx new file mode 100644 index 000000000..5703c7dad --- /dev/null +++ b/app/collections/industrial/warehouse-racks/page.tsx @@ -0,0 +1,3 @@ +export default function WarehouseRacks() { + return
Warehouse Racks
+} diff --git a/components/layout/navbar/NavbarV2.tsx b/components/layout/navbar/NavbarV2.tsx index 78185692d..de9801ca2 100644 --- a/components/layout/navbar/NavbarV2.tsx +++ b/components/layout/navbar/NavbarV2.tsx @@ -2,7 +2,6 @@ import { FC, useEffect, useMemo, useRef } from 'react' import Link from 'next/link' -import UserNav from '../UserNav' import { useRouter, usePathname } from 'next/navigation' import Image from 'next/image' diff --git a/next.config.ts b/next.config.ts index 1faac2309..a5c3b0778 100644 --- a/next.config.ts +++ b/next.config.ts @@ -21,4 +21,5 @@ export default { }, ], }, + devIndicators: false, }