update minor
This commit is contained in:
parent
19e729ddea
commit
ff9cae697b
|
|
@ -1,3 +1,4 @@
|
||||||
|
'use client'
|
||||||
import React, { useEffect, useState } from 'react'
|
import React, { useEffect, useState } from 'react'
|
||||||
|
|
||||||
export default function GPRPage() {
|
export default function GPRPage() {
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,8 @@ import NavbarPPID from '@/components/navbar/NavbarPPID';
|
||||||
import { usePathname } from 'next/navigation';
|
import { usePathname } from 'next/navigation';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
export default function PortalPPID({
|
|
||||||
children,
|
export default function PortalPPID() {
|
||||||
}: {
|
|
||||||
children: React.ReactNode
|
|
||||||
}) {
|
|
||||||
const pathname = usePathname();
|
const pathname = usePathname();
|
||||||
console.log(pathname)
|
console.log(pathname)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
'use client'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { FbIcon, Hotline, IgIcon, Location, Mail, TtIcon, TwIcon, WorldIcon, YtIcon } from '../icons'
|
import { FbIcon, Hotline, IgIcon, Location, Mail, TtIcon, TwIcon, WorldIcon, YtIcon } from '../icons'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
'use client'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import PublicInformation from './PublicInformation'
|
import PublicInformation from './PublicInformation'
|
||||||
import PPIDSidebar from './PPIDSidebar'
|
import PPIDSidebar from './PPIDSidebar'
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
'use client'
|
||||||
import { Input } from "@nextui-org/input";
|
import { Input } from "@nextui-org/input";
|
||||||
import { SearchIcon, SearchIcons } from "../icons";
|
import { SearchIcon } from "../icons";
|
||||||
import Link from "next/link";
|
|
||||||
|
|
||||||
export default function PPIDBanner() {
|
export default function PPIDBanner() {
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
'use client'
|
'use client'
|
||||||
import { Input } from '@nextui-org/input';
|
import { Input } from '@nextui-org/input';
|
||||||
import { Navbar, NavbarContent, NavbarItem, NavbarMenuToggle } from '@nextui-org/navbar';
|
import { Navbar, NavbarContent, NavbarItem, NavbarMenuToggle } from '@nextui-org/navbar';
|
||||||
import { Button, Dropdown, DropdownItem, DropdownMenu, DropdownTrigger } from '@nextui-org/react';
|
import { Button, Dropdown, DropdownItem, DropdownMenu, DropdownTrigger, autocomplete } from '@nextui-org/react';
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ChevronDownIcon, ChevronRightIcon, ChevronRightWhite, FbIcon, IdnIcon, IgIcon, SearchIcon, TtIcon, TwIcon, YtIcon } from '../icons';
|
import { ChevronDownIcon, ChevronRightIcon, ChevronRightWhite, FbIcon, IdnIcon, IgIcon, SearchIcon, TtIcon, TwIcon, YtIcon } from '../icons';
|
||||||
import { ThemeSwitch } from '../theme-switch';
|
import { ThemeSwitch } from '../theme-switch';
|
||||||
|
import Image from 'next/image';
|
||||||
|
|
||||||
export default function NavbarHumas() {
|
export default function NavbarHumas() {
|
||||||
|
|
||||||
|
|
@ -31,7 +32,12 @@ export default function NavbarHumas() {
|
||||||
<div className='w-full h-full flex'>
|
<div className='w-full h-full flex'>
|
||||||
<div className='min-w-max md:w-1/12 flex items-center justify-center'>
|
<div className='min-w-max md:w-1/12 flex items-center justify-center'>
|
||||||
<Link href={'/'}>
|
<Link href={'/'}>
|
||||||
<img src="/logohumas.png" alt="logo" className='min-w-max' />
|
<Image
|
||||||
|
height={100}
|
||||||
|
width={100}
|
||||||
|
src="/logohumas.png"
|
||||||
|
alt="logo"
|
||||||
|
className='min-w-max' />
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className='w-auto md:w-11/12 hidden md:flex flex-col justify-cente pt-3 space-y-3'>
|
<div className='w-auto md:w-11/12 hidden md:flex flex-col justify-cente pt-3 space-y-3'>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
'use client'
|
||||||
import { Link } from '@nextui-org/link'
|
import { Link } from '@nextui-org/link'
|
||||||
import { Navbar, NavbarContent, NavbarItem, NavbarMenuToggle } from '@nextui-org/navbar'
|
import { Navbar, NavbarContent, NavbarItem, NavbarMenuToggle } from '@nextui-org/navbar'
|
||||||
import { Button, Dropdown, DropdownItem, DropdownMenu, DropdownTrigger } from '@nextui-org/react'
|
import { Button, Dropdown, DropdownItem, DropdownMenu, DropdownTrigger } from '@nextui-org/react'
|
||||||
|
|
@ -345,3 +346,4 @@ export default function NavbarPPID() {
|
||||||
</Navbar>
|
</Navbar>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {}
|
const nextConfig = {
|
||||||
|
eslint: {
|
||||||
|
ignoreDuringBuilds: true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = nextConfig
|
module.exports = nextConfig
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue