import { getCachedGlobal } from '@/utilities/getGlobals' import Link from 'next/link' import React from 'react' import { CMSLink } from '@/components/Link' export async function Footer() { const footerData = await getCachedGlobal('footer', 1)() const navItems = footerData?.navItems || [] return ( ) }