Skip to content

Commit

Permalink
Rename home landing page links
Browse files Browse the repository at this point in the history
  • Loading branch information
chauhanshilpa committed May 17, 2024
1 parent 2a34786 commit 058fac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/components/reusable/HomeNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -48,7 +48,7 @@ const Navbar = () => {
</Link>
{/* large screen size nav links and login button */}
<div className="hidden lg:flex md:gap-10 lg:gap-14">
{NAVBAR_LINKS.map(({ label, link }) => (
{HOME_PAGE_NAVBAR_LINKS.map(({ label, link }) => (
<Link
key={uuidv4()}
href={link}
Expand Down
2 changes: 1 addition & 1 deletion app/utils/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const LANDING_PAGE_BUTTON = [
},
];

export const NAVBAR_LINKS = [
export const HOME_PAGE_NAVBAR_LINKS = [
{
label: "Meet new",
link: "/",
Expand Down

0 comments on commit 058fac4

Please sign in to comment.