2025-02-01 06:57:24 +07:00
|
|
|
"use client";
|
2025-02-05 17:43:24 +07:00
|
|
|
import Nav2 from "@/components/Nav";
|
2025-02-01 06:57:24 +07:00
|
|
|
import { toggleMobileMenu } from "@/utils/toggleMobileMenu";
|
|
|
|
import Image from "next/image";
|
2025-02-03 12:53:36 +07:00
|
|
|
import Link from "next/link";
|
2025-02-01 06:57:24 +07:00
|
|
|
|
2025-02-03 12:53:36 +07:00
|
|
|
export default function Header1Multipage({ links }: any) {
|
2025-02-01 06:57:24 +07:00
|
|
|
return (
|
|
|
|
<div className="main-nav-sub full-wrapper">
|
|
|
|
{/* Logo (* Add your text or image to the link tag. Use SVG or PNG image format.
|
|
|
|
If you use a PNG logo image, the image resolution must be equal 200% of the visible logo
|
|
|
|
image size for support of retina screens. See details in the template documentation. *) */}
|
2025-02-03 12:53:36 +07:00
|
|
|
<div className="nav-logo-wrap local-scroll">
|
|
|
|
<Link href={`/`} className="logo">
|
2025-02-01 06:57:24 +07:00
|
|
|
<Image
|
2025-02-03 12:53:36 +07:00
|
|
|
src="/assets/images/demo-slick/logo-dark.webp"
|
2025-02-01 06:57:24 +07:00
|
|
|
alt="Your Company Logo"
|
2025-02-03 12:53:36 +07:00
|
|
|
width={105}
|
|
|
|
height={34}
|
2025-02-01 06:57:24 +07:00
|
|
|
className="light-mode-logo"
|
|
|
|
/>
|
|
|
|
<Image
|
2025-02-03 12:53:36 +07:00
|
|
|
src="/assets/images/demo-slick/logo-dark.webp"
|
2025-02-01 06:57:24 +07:00
|
|
|
alt="Your Company Logo"
|
2025-02-03 12:53:36 +07:00
|
|
|
width={405}
|
|
|
|
height={34}
|
2025-02-01 06:57:24 +07:00
|
|
|
className="dark-mode-logo"
|
|
|
|
/>
|
2025-02-03 12:53:36 +07:00
|
|
|
</Link>
|
2025-02-01 06:57:24 +07:00
|
|
|
</div>
|
|
|
|
{/* Mobile Menu Button */}
|
2025-02-03 12:53:36 +07:00
|
|
|
<div onClick={toggleMobileMenu} className="mobile-nav" role="button" tabIndex={0}>
|
2025-02-01 06:57:24 +07:00
|
|
|
<i className="mobile-nav-icon" />
|
|
|
|
<span className="visually-hidden">Menu</span>
|
|
|
|
</div>
|
|
|
|
{/* Main Menu */}
|
|
|
|
<div className="inner-nav desktop-nav">
|
2025-02-03 12:53:36 +07:00
|
|
|
<ul className="clearlist local-scroll">
|
|
|
|
{/* Item With Sub */}
|
|
|
|
<Nav2 links={links} />
|
|
|
|
{/* End Item With Sub */}
|
|
|
|
</ul>
|
|
|
|
<ul className="items-end clearlist">
|
2025-02-01 06:57:24 +07:00
|
|
|
{/* Languages */}
|
2025-02-04 01:02:17 +07:00
|
|
|
{/* <LanguageSelect /> */}
|
2025-02-01 06:57:24 +07:00
|
|
|
{/* End Languages */}
|
|
|
|
<li>
|
2025-02-04 01:02:17 +07:00
|
|
|
<Link href="/contact" className="opacity-1 no-hover">
|
2025-02-03 12:53:36 +07:00
|
|
|
<span className="link-hover-anim underline" data-link-animate="y">
|
2025-02-04 01:02:17 +07:00
|
|
|
<span className="link-strong link-strong-unhovered">Request Consultation</span>
|
2025-02-03 12:53:36 +07:00
|
|
|
<span className="link-strong link-strong-hovered" aria-hidden="true">
|
2025-02-04 01:02:17 +07:00
|
|
|
Request Consultation
|
2025-02-03 12:53:36 +07:00
|
|
|
</span>
|
2025-02-01 06:57:24 +07:00
|
|
|
</span>
|
2025-02-03 12:53:36 +07:00
|
|
|
</Link>
|
2025-02-01 06:57:24 +07:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{/* End Main Menu */}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|