Skip to content

Commit

Permalink
feat: 약관 동의 날짜 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dvp-tae committed Oct 18, 2024
1 parent f899374 commit 42aa063
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/general/components/TOSContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ export const ProcessContent = () => (
</p>
</li>
</ul>
<strong>본 약관은 20204년 10월 07일부터 시행됩니다.</strong>
<strong>본 약관은 2024년 10월 07일부터 시행됩니다.</strong>
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/personal-data/component/emailContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function EmailContent() {
것을 거부하며, 이를 위반시 정보통신망법에 의해 형사처벌됨을 유념하시기 바랍니다.
</p>

<p className="text-sm text-gray-500">[게시일 2024년 0월 00일]</p>
<p className="text-sm text-gray-500">[게시일 2024년 10월 07일]</p>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/personal-data/component/personalDataContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function PersonalDataContent() {
</p>
</section>

<p className="mt-4 text-sm text-gray-500">이 개인정보 처리방침은 2024년 0월 00일부터 적용됩니다.</p>
<p className="mt-4 text-sm text-gray-500">이 개인정보 처리방침은 2024년 10월 07일부터 적용됩니다.</p>
<p className="text-sm text-gray-500">
문의: <a href="mailto:[email protected]">[email protected]</a>
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function TermsOfServiceContent() {
아지위와 이용자는 서비스와 관련하여 발생한 분쟁을 원만하게 해결하기 위하여 필요한 모든 노력을 하여야 합니다.
그럼에도 불구하고 분쟁이 해결되지 않으면 민사소송법상의 관할법원에 소를 제기할 수 있습니다.
</p>
<p className="mt-4 text-sm text-gray-500">본 약관은 2024년 0월 00일부터 시행됩니다.</p>
<p className="mt-4 text-sm text-gray-500">본 약관은 2024년 10월 07일부터 시행됩니다.</p>
</section>
</div>
);
Expand Down
4 changes: 3 additions & 1 deletion src/pages/personal-data/container/contentSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ interface ContentSectionProps {
}

export default function ContentSection({ categoryParam }: ContentSectionProps) {
return <div className="px-[200px] xs:px-10 sm:px-10 md:px-10 lg:px-10">{getContentByCategory(categoryParam)}</div>;
return (
<div className="my-20 px-[200px] xs:px-10 sm:px-10 md:px-10 lg:px-10">{getContentByCategory(categoryParam)}</div>
);
}

function getContentByCategory(categoryParam: string) {
Expand Down

0 comments on commit 42aa063

Please sign in to comment.