diff --git a/src/Footer/Component.tsx b/src/Footer/Component.tsx index 0dcab5f..a675c29 100644 --- a/src/Footer/Component.tsx +++ b/src/Footer/Component.tsx @@ -1,28 +1,32 @@ 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 ( - )