File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1+ import { AuthHeader } from "@/components/auth/AuthHeader" ;
2+ import { SignupPageTitle } from "@/components/auth/signup/SignupPageTitle" ;
3+ import { SignupSubtitle } from "@/components/auth/signup/SignupSubTitle" ;
14import { makePageMetadata } from "@/seo/metadata" ;
25
36export const metadata = {
@@ -10,5 +13,12 @@ export const metadata = {
1013} ;
1114
1215export default function SignupPage ( ) {
13- return < div > 회원가입 페이지</ div > ;
16+ return (
17+ < >
18+ < AuthHeader >
19+ < SignupPageTitle />
20+ < SignupSubtitle />
21+ </ AuthHeader >
22+ </ >
23+ ) ;
1424}
Original file line number Diff line number Diff line change 33import { SIGNUP_BTNS } from "@/lib/constants" ;
44import { cn } from "@/lib/utils" ;
55import { Button } from "@/shared/button" ;
6+ import { Icon } from "@/shared/Icon" ;
67import Image from "next/image" ;
78import * as React from "react" ;
8- import { Icon } from "../shared/Icon" ;
99
1010interface Props {
1111 className ?: string ;
You can’t perform that action at this time.
0 commit comments