npm run build

This commit is contained in:
amd123 2024-03-27 19:46:08 +07:00
parent df68af4760
commit fa775d4f24
3 changed files with 2 additions and 6 deletions

View File

@ -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)

View File

@ -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}

View File

@ -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>