/* eslint-disable */
// Nameplate — two pieces of overlay typography:
//  • Big "appellation" word that fades over the map for ~3s on selection
//    (4s cubic-bezier transition lifted from map/css/style.css #appellation-name)
//  • Always-visible "chateau name" capsule pinned to the bottom-center

function Nameplate({ chateau, appellation }) {
  return (
    <div className={"appellation-name-overlay" + (appellation ? " visible" : "")}>
      {appellation || ""}
    </div>
  );
}

window.Nameplate = Nameplate;
