import 'tippy.js/dist/tippy.css' import { GlobeAltIcon } from '@heroicons/react/20/solid' import Tippy from '@tippyjs/react' import type { Page, Settings } from 'lib/sanity.queries' import Image from 'next/image' import Link from 'next/link' import { useState } from 'react' import { Fade, Slide } from 'react-awesome-reveal' import NavPageItems from './NavPageItems' const LogoGWK = '/images/logogwk.svg' export interface NavbarProps { settings: Settings } export default function Navbar() { const [isOpen, setOpen] = useState(false) return ( <>