"use client"; import {usePathname} from "next/navigation"; import {Link} from "@heroui/react"; import {getCurrentYear} from "@/utils/time"; import {XIcon, GithubIcon, DiscordIcon} from "@/components/icons"; import {siteConfig} from "@/config/site"; export const Footer = () => { const pathname = usePathname(); if (pathname.includes("/examples")) { return null; } const isDocs = pathname.includes("/docs"); return ( ); };