summaryrefslogtreecommitdiff
path: root/components/additional-info
diff options
context:
space:
mode:
Diffstat (limited to 'components/additional-info')
-rw-r--r--components/additional-info/join-form.tsx5
-rw-r--r--components/additional-info/tech-vendor-info-form.tsx7
2 files changed, 9 insertions, 3 deletions
diff --git a/components/additional-info/join-form.tsx b/components/additional-info/join-form.tsx
index 4a9a3379..b6cb0d9c 100644
--- a/components/additional-info/join-form.tsx
+++ b/components/additional-info/join-form.tsx
@@ -79,7 +79,7 @@ import {
CardHeader,
CardTitle,
} from "@/components/ui/card"
-
+import { InformationButton } from "@/components/information/information-button"
i18nIsoCountries.registerLocale(enLocale)
i18nIsoCountries.registerLocale(koLocale)
@@ -535,11 +535,14 @@ const handleDownloadAllFiles = async () => {
<section className="overflow-hidden rounded-md border bg-background shadow-sm">
<div className="p-6 md:p-10 space-y-6">
<div className="space-y-2">
+ <div className="flex items-center gap-2">
<h3 className="text-xl font-semibold">
{t("infoForm.title", {
defaultValue: "Update Vendor Information",
})}
</h3>
+ <InformationButton pagePath="partners/info" />
+ </div>
<p className="text-sm text-muted-foreground">
{t("infoForm.description", {
defaultValue:
diff --git a/components/additional-info/tech-vendor-info-form.tsx b/components/additional-info/tech-vendor-info-form.tsx
index 8e6f7eaf..55d01d21 100644
--- a/components/additional-info/tech-vendor-info-form.tsx
+++ b/components/additional-info/tech-vendor-info-form.tsx
@@ -30,7 +30,7 @@ import {
CardHeader,
CardTitle,
} from "@/components/ui/card"
-
+import { InformationButton } from "@/components/information/information-button"
// 타입 정의
interface TechVendorContact {
id: number
@@ -251,7 +251,10 @@ export function TechVendorInfoForm() {
<div className="space-y-6 p-6">
<div className="flex items-center justify-between">
<div>
- <h2 className="text-2xl font-bold">기술영업 벤더 정보</h2>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold">기술영업 벤더 정보</h2>
+ <InformationButton pagePath="partners/info" />
+ </div>
<p className="text-gray-600">기술영업 벤더 정보를 확인하고 업데이트할 수 있습니다.</p>
</div>
{attachments.length > 0 && (