From 058fac4f944f29f106c39d4000560635533f51dc Mon Sep 17 00:00:00 2001 From: Shilpa Chauhan Date: Fri, 17 May 2024 15:00:44 +0530 Subject: [PATCH] Rename home landing page links --- app/components/reusable/HomeNavbar.tsx | 4 ++-- app/utils/constants.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/reusable/HomeNavbar.tsx b/app/components/reusable/HomeNavbar.tsx index 913e167..f17a0c9 100644 --- a/app/components/reusable/HomeNavbar.tsx +++ b/app/components/reusable/HomeNavbar.tsx @@ -2,7 +2,7 @@ import { useState, useRef, useEffect } from "react"; import { IoMdClose } from "react-icons/io"; import { GiHamburgerMenu } from "react-icons/gi"; -import { NAVBAR_LINKS } from "@/app/utils/constants"; +import { HOME_PAGE_NAVBAR_LINKS } from "@/app/utils/constants"; import { v4 as uuidv4 } from "uuid"; import Link from "next/link"; import { Zklogin, AccountData } from "@/app/utils/Zklogin"; @@ -48,7 +48,7 @@ const Navbar = () => { {/* large screen size nav links and login button */}
- {NAVBAR_LINKS.map(({ label, link }) => ( + {HOME_PAGE_NAVBAR_LINKS.map(({ label, link }) => (