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, }