"use client";

import type { ReactNode } from "react";
import { usePathname } from "next/navigation";

/** Hides storefront chrome (footer) on admin routes. */
export function FooterGate({ children }: { children: ReactNode }) {
  const pathname = usePathname();
  if (pathname.startsWith("/admin")) return null;
  return <>{children}</>;
}
