import Link from "next/link" import { DrupalMenuLinkContent } from "next-drupal" interface FooterProps { links: DrupalMenuLinkContent[] } export function Footer({ links }: FooterProps) { return ( ) }