summaryrefslogtreecommitdiff
path: root/components/layout
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-10-24 10:48:51 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-10-24 10:48:51 +0000
commitd4af641e8b7a144b2c61e7b9d68e7918bd46cc1e (patch)
tree3755978e471d641c57ae2370e7f1e00bfe3ecc2f /components/layout
parent9f7af2e945c2d9f7ce73c9a0287d1d346f6cc5de (diff)
(임수민) 데이터룸 관련 요청사항 반영
Diffstat (limited to 'components/layout')
-rw-r--r--components/layout/Footer.tsx6
-rw-r--r--components/layout/Header.tsx10
-rw-r--r--components/layout/HeaderDataroom.tsx7
3 files changed, 16 insertions, 7 deletions
diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx
index bf533ae8..33278d7e 100644
--- a/components/layout/Footer.tsx
+++ b/components/layout/Footer.tsx
@@ -11,11 +11,15 @@ export function SiteFooter() {
<footer className="border-grid border-t py-6 md:px-8 md:py-0">
<div className="container-wrapper">
<div className="container py-4">
- <div className="text-balance text-center text-sm leading-loose text-muted-foreground md:text-left">
+ {/* <div className="text-balance text-center text-sm leading-loose text-muted-foreground md:text-left">
{isDataRoom
? "Data Room - 삼성중공업 데이터룸"
: "enterprise Vendor Co-work Platform - 삼성중공업 전사벤더협업플랫폼"
}
+ </div> */}
+
+ <div className="text-balance text-center text-sm leading-loose text-muted-foreground md:text-left">
+ CONPORT
</div>
</div>
</div>
diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx
index a080d394..db9c6b49 100644
--- a/components/layout/Header.tsx
+++ b/components/layout/Header.tsx
@@ -161,14 +161,14 @@ export function Header() {
<Link href={logoHref} className="flex items-center gap-2">
<Image
className="dark:invert"
- src="/images/vercel.svg"
- alt="EVCP Logo"
- width={20}
+ src="/images/Logotype.svg"
+ alt="Logo"
+ width={120}
height={20}
/>
- <span className="hidden font-bold lg:inline-block">
+ {/* <span className="hidden font-bold lg:inline-block">
{t(brandNameKey)}
- </span>
+ </span> */}
</Link>
</div>
diff --git a/components/layout/HeaderDataroom.tsx b/components/layout/HeaderDataroom.tsx
index fa9b89cf..0981b24b 100644
--- a/components/layout/HeaderDataroom.tsx
+++ b/components/layout/HeaderDataroom.tsx
@@ -138,7 +138,12 @@ export function HeaderDataRoom() {
<Link href={`/${lng}/evcp/settings`}>설정</Link>
</DropdownMenuItem>
<DropdownMenuSeparator />
- <DropdownMenuItem onSelect={() => signOut({ callbackUrl: `/${lng}/${domain}` })}>
+ <DropdownMenuItem onSelect={() => {
+ const logoutUrl = domain === 'partners'
+ ? 'https://shidataroom.com/en/partners'
+ : `/${lng}/${domain}`;
+ signOut({ callbackUrl: logoutUrl });
+ }}>
로그아웃
</DropdownMenuItem>
</DropdownMenuContent>