"use client"; import dynamic from "next/dynamic"; import {usePathname} from "next/navigation"; import {siteConfig} from "@/config/site"; const Link = dynamic(() => import("@nextui-org/react").then((mod) => mod.Link)); const VercelCallout = dynamic(() => import("./vercel-callout").then((mod) => mod.VercelCallout)); export const Footer = () => { const pathname = usePathname(); if (pathname.includes("/examples")) { return null; } return ( ); };