summaryrefslogtreecommitdiff
path: root/components/layout
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-10-13 08:56:27 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-10-13 08:56:27 +0000
commitb9a2081a76e669688d5884f20482b37cc8acca22 (patch)
tree385e78c05d193a54daaced836f1e1152696153a8 /components/layout
parente84cf02a1cb4959a9d3bb5bbf37885c13a447f78 (diff)
(최겸, 임수민) 구매 입찰, 견적(그룹코드, tbe에러) 수정, data-room 수정
Diffstat (limited to 'components/layout')
-rw-r--r--components/layout/Footer.tsx13
1 files changed, 11 insertions, 2 deletions
diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx
index c994b844..bf533ae8 100644
--- a/components/layout/Footer.tsx
+++ b/components/layout/Footer.tsx
@@ -1,15 +1,24 @@
+'use client'
+
import { siteConfig } from "@/config/site"
+import { usePathname } from "next/navigation"
export function SiteFooter() {
+ const pathname = usePathname()
+ const isDataRoom = pathname?.includes('data-room')
+
return (
<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">
- enterprise Vendor Co-work Platform - 삼성중공업 전사벤더협업플랫폼
+ {isDataRoom
+ ? "Data Room - 삼성중공업 데이터룸"
+ : "enterprise Vendor Co-work Platform - 삼성중공업 전사벤더협업플랫폼"
+ }
</div>
</div>
</div>
</footer>
)
-}
+} \ No newline at end of file