diff options
| author | joonhoekim <26rote@gmail.com> | 2025-07-02 00:17:29 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-07-02 00:17:29 +0000 |
| commit | 6a9ca20deddcdcbe8495cf5a73ec7ea5f53f9b55 (patch) | |
| tree | f48f3a84174f0be560fdf5ed7797fffd8a412a91 /components/documents | |
| parent | 4fb273b7fc85352183113f1240fc33f7d6c98328 (diff) | |
| parent | cee824301521c181000d501c0236db99079bbae4 (diff) | |
(merge) merged local commits
Diffstat (limited to 'components/documents')
| -rw-r--r-- | components/documents/vendor-docs.client.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/documents/vendor-docs.client.tsx b/components/documents/vendor-docs.client.tsx index 9bb7988c..ebc30b83 100644 --- a/components/documents/vendor-docs.client.tsx +++ b/components/documents/vendor-docs.client.tsx @@ -5,7 +5,7 @@ import { useRouter, useParams } from "next/navigation" import DocumentContainer from "@/components/documents/document-container" import { ProjectInfo, ProjectSwitcher } from "./project-swicher" - +import { InformationButton } from "@/components/information/information-button" interface VendorDocumentsClientProps { projects: ProjectInfo[] children: React.ReactNode @@ -55,7 +55,10 @@ export default function VendorDocumentsClient({ <div className="flex items-center justify-between"> {/* 왼쪽: 타이틀 & 설명 */} <div> - <h2 className="text-2xl font-bold tracking-tight">Vendor Documents</h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight">Vendor Documents</h2> + <InformationButton pagePath="partners/documents" /> + </div> <p className="text-muted-foreground"> 문서리스트를 확인하고 리스트에 맞게 문서를 업로드하고 관리할 수 있으며 삼성중공업으로 전달할 수 있습니다. |
