FOWOCO PROJECT POLICY
- {title}
-
- KT AIVLE School 빅프로젝트의 FOWOCO 프로토타입 운영 기준입니다.
-
+ {document.title}
+ {document.summary}
{version ? `버전 ${version}` : '현재 버전 확인 중'} · 시행일 2026년 8월 19일
@@ -111,13 +272,34 @@ export function LegalPolicyPage({ kind }: LegalPolicyPageProps) {
실제 사업장 도입 전 법률·노무 검토와 정식 운영 정책 확정이 필요한 프로젝트 안내입니다.
-
- {sections.map((section) => (
-
- {section.title}
- {section.body}
-
- ))}
+
+
+
+
+ {document.sections.map((section) => (
+
+ {section.title}
+ {section.paragraphs.map((paragraph) => (
+ {paragraph}
+ ))}
+ {section.items && (
+
+ {section.items.map((item) => (
+ - {item}
+ ))}
+
+ )}
+ {section.note && {section.note}
}
+
+ ))}
+
{fieldErrors.terms && {fieldErrors.terms}
}
diff --git a/src/routes.tsx b/src/routes.tsx
index d423aad..27679a7 100644
--- a/src/routes.tsx
+++ b/src/routes.tsx
@@ -82,6 +82,11 @@ export const router = createBrowserRouter([
element: ,
errorElement: ,
},
+ {
+ path: '/legal/marketing',
+ element: ,
+ errorElement: ,
+ },
{ path: '/forgot-password', element: , errorElement: },
{ path: '/email-sent', element: , errorElement: },
{ path: '/reset-password', element: , errorElement: },