"use client"; import React from "react"; import { usePathname } from "next/navigation"; export function Banner() { const pathname = usePathname(); if (pathname?.startsWith("/admin") || pathname === "/") return null; return (
{/* Early access bar */}
Early Access Beta You're using an early-access prototype of the Builder. Data, pricing, and available parts are still evolving.
Early-access prototype. Data and pricing may change.
); } export default Banner;