diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-28 02:13:30 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-28 02:13:30 +0000 |
| commit | ef4c533ebacc2cdc97e518f30e9a9350004fcdfb (patch) | |
| tree | 345251a3ed0f4429716fa5edaa31024d8f4cb560 /components/layout | |
| parent | 9ceed79cf32c896f8a998399bf1b296506b2cd4a (diff) | |
~20250428 작업사항
Diffstat (limited to 'components/layout')
| -rw-r--r-- | components/layout/Header.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx index 498668eb..6747e549 100644 --- a/components/layout/Header.tsx +++ b/components/layout/Header.tsx @@ -97,7 +97,13 @@ export function Header() { width={20} height={20} /> - <span className="hidden font-bold lg:inline-block">eVCP</span> + <span className="hidden font-bold lg:inline-block"> + {isPartnerRoute + ? "eVCP Partners" + : pathname?.includes("/evcp") + ? "eVCP 삼성중공업" + : "eVCP"} + </span> </Link> </div> |
