Skip to content

Commit

Permalink
Missing product name in header (#3667)
Browse files Browse the repository at this point in the history
add product name
  • Loading branch information
timarney committed May 21, 2024
1 parent 246cb3e commit 4fa20fc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions components/clientComponents/globals/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ export const Header = ({ context = "default", className }: HeaderParams) => {
</div>
</a>
</Link>

{context === "default" && (
<div className="mt-3 box-border block h-[40px] px-2 py-1 text-xl font-semibold">
{t("title", { ns: "common" })}
</div>
)}

{status === "authenticated" && (
<>
<div className="mt-3 box-border block h-[40px] px-2 py-1 font-semibold">
Expand Down

0 comments on commit 4fa20fc

Please sign in to comment.