import Link from 'next/link'; import GitHubIcon from 'components/icons/github'; import LogoIcon from 'components/icons/logo'; import VercelIcon from 'components/icons/vercel'; import { SITE_NAME } from 'lib/constants'; import { getMenu } from 'lib/shopify'; import { Menu } from 'lib/shopify/types'; export default async function Footer() { const menu = await getMenu('next-js-frontend-footer-menu'); return ( ); }