import FooterMenu from "@/components/layout/footer-menu"; import { getMenu } from "@/lib/store/menu"; const { COMPANY_NAME, SITE_NAME } = process.env; export default async function Footer() { const currentYear = new Date().getFullYear(); const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : ""); const skeleton = "w-full h-6 animate-pulse rounded-sm bg-neutral-200 dark:bg-neutral-700"; const menu = await getMenu("footer"); const copyrightName = COMPANY_NAME || SITE_NAME || ""; return ( ); }