'use client' import { siteConfig } from "@/config/site" import { usePathname } from "next/navigation" export function SiteFooter() { const pathname = usePathname() const isDataRoom = pathname?.includes('data-room') return ( ) }