diff --git a/app/(landing)/privacy-terms/page.module.scss b/app/(landing)/privacy-terms/page.module.scss new file mode 100644 index 00000000..466e324e --- /dev/null +++ b/app/(landing)/privacy-terms/page.module.scss @@ -0,0 +1,9 @@ +.section-container { + margin-bottom: 80px; + + h3 { + margin: 16px 0; + @include typo-h3; + font-weight: $text-bold; + } +} diff --git a/app/(landing)/privacy-terms/page.tsx b/app/(landing)/privacy-terms/page.tsx new file mode 100644 index 00000000..a0ee53d3 --- /dev/null +++ b/app/(landing)/privacy-terms/page.tsx @@ -0,0 +1,19 @@ +import classNames from 'classnames/bind' + +import PrivacyTerms from '@/shared/ui/terms/privacy-terms' + +import styles from './page.module.scss' + +const cx = classNames.bind(styles) + +const TermsOfUsePage = () => { + return ( + <> +
+ +
+ + ) +} + +export default TermsOfUsePage diff --git a/app/(landing)/signup/terms-of-use/page.tsx b/app/(landing)/signup/terms-of-use/page.tsx index 50136c98..6a12f57d 100644 --- a/app/(landing)/signup/terms-of-use/page.tsx +++ b/app/(landing)/signup/terms-of-use/page.tsx @@ -6,14 +6,14 @@ import { PATH } from '@/shared/constants/path' import { Button } from '@/shared/ui/button' import Checkbox from '@/shared/ui/check-box' import { LinkButton } from '@/shared/ui/link-button' +import InvestorTerms from '@/shared/ui/terms/investor-terms' +import PrivacyTerms from '@/shared/ui/terms/privacy-terms' +import TraderTerms from '@/shared/ui/terms/trader-terms' import { getUserTypeCookie } from '../_lib/cookies' import Step from '../_ui/step' import { useTermsCheck } from './_hooks/use-terms-check' import TermsContainer from './_ui/terms-container' -import InvestorTerms from './_ui/terms/investor-terms' -import PrivacyTerms from './_ui/terms/privacy-terms' -import TraderTerms from './_ui/terms/trader-terms' import styles from './page.module.scss' const cx = classNames.bind(styles) diff --git a/app/(landing)/terms-of-use/page.module.scss b/app/(landing)/terms-of-use/page.module.scss new file mode 100644 index 00000000..9c0ec141 --- /dev/null +++ b/app/(landing)/terms-of-use/page.module.scss @@ -0,0 +1,13 @@ +.title { + margin: 16px 0; + @include typo-h3; + font-weight: $text-bold; +} + +.section-container { + margin-bottom: 80px; + + h3 { + @include typo-b1; + } +} diff --git a/app/(landing)/terms-of-use/page.tsx b/app/(landing)/terms-of-use/page.tsx new file mode 100644 index 00000000..5fb414a9 --- /dev/null +++ b/app/(landing)/terms-of-use/page.tsx @@ -0,0 +1,24 @@ +import classNames from 'classnames/bind' + +import InvestorTerms from '@/shared/ui/terms/investor-terms' +import TraderTerms from '@/shared/ui/terms/trader-terms' + +import styles from './page.module.scss' + +const cx = classNames.bind(styles) + +const TermsOfUsePage = () => { + return ( + <> +

이용약관

+
+ +
+
+ +
+ + ) +} + +export default TermsOfUsePage diff --git a/app/(landing)/signup/terms-of-use/_ui/terms/investor-terms.tsx b/shared/ui/terms/investor-terms.tsx similarity index 100% rename from app/(landing)/signup/terms-of-use/_ui/terms/investor-terms.tsx rename to shared/ui/terms/investor-terms.tsx diff --git a/app/(landing)/signup/terms-of-use/_ui/terms/privacy-terms.tsx b/shared/ui/terms/privacy-terms.tsx similarity index 100% rename from app/(landing)/signup/terms-of-use/_ui/terms/privacy-terms.tsx rename to shared/ui/terms/privacy-terms.tsx diff --git a/app/(landing)/signup/terms-of-use/_ui/terms/styles.module.scss b/shared/ui/terms/styles.module.scss similarity index 100% rename from app/(landing)/signup/terms-of-use/_ui/terms/styles.module.scss rename to shared/ui/terms/styles.module.scss diff --git a/app/(landing)/signup/terms-of-use/_ui/terms/trader-terms.tsx b/shared/ui/terms/trader-terms.tsx similarity index 100% rename from app/(landing)/signup/terms-of-use/_ui/terms/trader-terms.tsx rename to shared/ui/terms/trader-terms.tsx