import FooterMenu from 'components/layout/footer-menu'; import LogoSquare from 'components/logo-square'; import Link from 'next/link'; import { Suspense } from 'react'; const { COMPANY_NAME, SITE_NAME } = process.env; type Menu = { title: string; path: string; }; export default async function Footer() { const menu = [ { title: 'Home', path: '/' }, { title: 'Shop', path: '/shop' } ] as Menu[]; const currentYear = new Date().getFullYear(); const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : ''); const skeleton = 'w-full h-6 animate-pulse rounded bg-neutral-200 dark:bg-neutral-700'; const copyrightName = COMPANY_NAME || SITE_NAME || ''; return ( ); }