import { FooterNavigationProps, FooterNavigationItemProps, } from "@/types/components/current/footer" import Link from "next/link" function NavigationItem({ linkObject, lang }: FooterNavigationItemProps) { if (linkObject.__typename === "FooterNavigationLinksInternalLink") { const href = `/${lang}${linkObject.internal_link.pageConnection.edges[0].node.url}` return (