import Link from 'next/link'; import GitHubIcon from 'components/icons/github'; import LogoIcon from 'components/icons/logo'; import VercelIcon from 'components/icons/vercel'; import { getMenu } from 'lib/shopify'; import { Menu } from 'lib/shopify/types'; const { SITE_NAME } = process.env; export default async function Footer() { const currentYear = new Date().getFullYear(); const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : ''); const menu = await getMenu('next-js-frontend-footer-menu'); return ( ); }