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';
|
import React from 'react';
|
||||||
|
|
||||||
|
|
||||||
interface PPIDBannerProps {
|
|
||||||
url: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function PortalPPID({ url }: PPIDBannerProps) {
|
export default function PortalPPID(url: any) {
|
||||||
const pathname = usePathname();
|
const pathname = usePathname();
|
||||||
console.log(pathname)
|
console.log(pathname)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1035,7 +1035,7 @@ export const PPIDNavbar = () => {
|
||||||
<NavbarMenu>
|
<NavbarMenu>
|
||||||
{/* {searchInput} */}
|
{/* {searchInput} */}
|
||||||
<div className="mx-4 mt-2 flex flex-col gap-2 pt-10">
|
<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}`}>
|
<NavbarMenuItem key={`${item}-${index}`}>
|
||||||
<Link
|
<Link
|
||||||
href={item.href}
|
href={item.href}
|
||||||
|
|
|
||||||
|
|
@ -869,7 +869,6 @@ export const Navbar = () => {
|
||||||
<NavbarMenuItem key={`${item}-${index}`}>
|
<NavbarMenuItem key={`${item}-${index}`}>
|
||||||
<Link
|
<Link
|
||||||
href={item.href}
|
href={item.href}
|
||||||
size="lg"
|
|
||||||
>
|
>
|
||||||
{item.label}
|
{item.label}
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue