blob: 33278d7e63750cb7ebf4b33ae3e2fa655df6e103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
'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">
{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>
</footer>
)
}
|