"use client"; import Link from "next/link"; import Image from "next/image"; import { useTranslations } from "next-intl"; import { useCurrentUserContext } from "../../user/contexts/CurrentUserContext"; import { buttonVariants } from "../../../shadcnui"; import { useHelp } from "../contexts/HelpContext"; import { HelpAskAi } from "./HelpAskAi"; export function HelpHeader() { const t = useTranslations(); const { currentUser } = useCurrentUserContext(); const { brand } = useHelp(); const logo = brand?.logo; const label = brand?.label ?? "Help"; const appHref = brand?.appHref ?? "/"; return (
{logo ? {label} : null} {label} · {t("help.footerLink")}
{/* Styled Links, not
); }