import Link from 'next/link'; import GitHubIcon from 'components/icons/github'; import LogoIcon from 'components/icons/logo'; import { getMenu } from 'lib/shopware'; import { Menu } from 'lib/shopware/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({ type: 'footer-navigation', depth: 2 }); return ( ); }