import { Brand, Button, cn } from "@rubis/ui"; import { copy } from "../copy"; const APP_URL = "https://app.rubis.pro"; type SiteHeaderProps = { /** Si true, fond opaque + bordure (utile sur les pages blog où on n'a pas de hero). Sinon transparent + sticky-blur. */ solid?: boolean; className?: string; }; /** * Header public commun à toutes les pages rubis.pro/*. */ export function SiteHeader({ solid = false, className }: SiteHeaderProps) { return (
{copy.nav.baseline}
); }