"use client"; import {usePathname} from "next/navigation"; import {getCurrentYear} from "@/utils/time"; export const Footer = () => { const pathname = usePathname(); if (pathname.includes("/examples")) { return null; } return ( ); };