src/components/navbar-3/index.tsx'use client'import { Disclosure } from '@headlessui/react'import Link from 'next/link'import type { ReactElement } from 'react'import clsx from 'clsx'import { Logo } from '@/components/logo'import { DesktopNav } from './desktop-nav'import { SearchButton } from './search-button'import { SocialMediaNav } from './social-media-nav'import { MobileNavButton } from './mobile-nav-button'import { StickyNavbar } from './sticky-navbar'import useOffsetTop from '@/hooks/use-offset-top'import { state, useSnapshot } from '@/state'import type { NavbarProps } from './types'import { homeLink } from './config'/*** Main navigation bar component for the application (Navbar3)*/
Showing the first 20 lines.
Get full code