diff --git a/components/Banner.tsx b/components/Banner.tsx index 99e8d3d..85cb43d 100644 --- a/components/Banner.tsx +++ b/components/Banner.tsx @@ -5,7 +5,7 @@ import { usePathname } from "next/navigation"; export function Banner() { const pathname = usePathname(); - if (pathname?.startsWith("/admin")) return null; + if (pathname?.startsWith("/admin") || pathname === "/") return null; return (