npm run build
This commit is contained in:
parent
df68af4760
commit
fa775d4f24
|
|
@ -7,11 +7,8 @@ import { usePathname } from 'next/navigation';
|
|||
import React from 'react';
|
||||
|
||||
|
||||
interface PPIDBannerProps {
|
||||
url: string;
|
||||
}
|
||||
|
||||
export default function PortalPPID({ url }: PPIDBannerProps) {
|
||||
export default function PortalPPID(url: any) {
|
||||
const pathname = usePathname();
|
||||
console.log(pathname)
|
||||
|
||||
|
|
|
|||
|
|
@ -1035,7 +1035,7 @@ export const PPIDNavbar = () => {
|
|||
<NavbarMenu>
|
||||
{/* {searchInput} */}
|
||||
<div className="mx-4 mt-2 flex flex-col gap-2 pt-10">
|
||||
{siteConfig.navMenuItems.map((item, index) => (
|
||||
{siteConfig.humasMenuItems.map((item: any, index: any) => (
|
||||
<NavbarMenuItem key={`${item}-${index}`}>
|
||||
<Link
|
||||
href={item.href}
|
||||
|
|
|
|||
|
|
@ -869,7 +869,6 @@ export const Navbar = () => {
|
|||
<NavbarMenuItem key={`${item}-${index}`}>
|
||||
<Link
|
||||
href={item.href}
|
||||
size="lg"
|
||||
>
|
||||
{item.label}
|
||||
</Link>
|
||||
|
|
|
|||
Loading…
Reference in New Issue