From df5cc5f02224a6c986e64c7a012188bcbea675ca Mon Sep 17 00:00:00 2001 From: Austin Bennett Date: Tue, 11 Feb 2025 10:45:19 -0600 Subject: [PATCH] removed history page --- default.nix | 1 + src/components/Header.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 95b317a..98c90c8 100644 --- a/default.nix +++ b/default.nix @@ -6,6 +6,7 @@ pkgs.mkShell { buildInputs = [ pkgs.nodejs pkgs.yarn + pkgs.firebase-tools ]; # Install Next.js via yarn in the shell diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 67765a2..db40981 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -9,7 +9,7 @@ const Header = () => { const navItems = [ { label: 'Our Products', href: '/products' }, - { label: 'History', href: '/history' }, + // { label: 'History', href: '/history' }, { label: 'Contact', href: '/contact' }, ];