Skip to content

Commit df2d93a

Browse files
committed
CDP-209 feat✨ (signup): signup page에 컴포넌트 조립
1 parent 2376210 commit df2d93a

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/app/(auth)/signup/page.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import { AuthHeader } from "@/components/auth/AuthHeader";
2+
import { SignupPageTitle } from "@/components/auth/signup/SignupPageTitle";
3+
import { SignupSubtitle } from "@/components/auth/signup/SignupSubTitle";
14
import { makePageMetadata } from "@/seo/metadata";
25

36
export const metadata = {
@@ -10,5 +13,12 @@ export const metadata = {
1013
};
1114

1215
export default function SignupPage() {
13-
return <div>회원가입 페이지</div>;
16+
return (
17+
<>
18+
<AuthHeader>
19+
<SignupPageTitle />
20+
<SignupSubtitle />
21+
</AuthHeader>
22+
</>
23+
);
1424
}

src/components/SiginupGroupButton.tsx renamed to src/components/auth/signup/SignupGroupButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import { SIGNUP_BTNS } from "@/lib/constants";
44
import { cn } from "@/lib/utils";
55
import { Button } from "@/shared/button";
6+
import { Icon } from "@/shared/Icon";
67
import Image from "next/image";
78
import * as React from "react";
8-
import { Icon } from "../shared/Icon";
99

1010
interface Props {
1111
className?: string;

0 commit comments

Comments
 (0)