Skip to content

Conversation

@seokhwan13
Copy link
Collaborator

@seokhwan13 seokhwan13 commented Nov 14, 2025

📂 작업 내용

원가입, 로그인, 인증인가 기능 구현

closes #1

💡 자세한 설명

회원가입, 로그인, 인증인가 기능 작동하도록 구현 했습니다.
app/global/auth/useAuth.tsx에 로그인 정보 넣어놨고, app/components/header.tsx처럼

import { useAuth } from "@/app/global/auth/useAuth";
const { loginMember, isLogin } = useAuth();

넣고 사용해 주시면 됩니다.
현재는 loginMember에 아래 정보만 들어갔고 지역 정보 추가 예정입니다

export interface MemberDto {
  id: number;
  email: string;
  nickname: string;
}

✅ 셀프 체크리스트

  • PR 제목을 형식에 맞게 작성했나요?
  • 브랜치 전략에 맞는 브랜치에 PR을 올리고 있나요? (main이 아닙니다.)
  • 이슈는 close 했나요?
  • Reviewers, Labels를 등록했나요?
  • 작업 도중 문서 수정이 필요한 경우 잘 수정했나요?
  • 테스트는 잘 통과했나요?
  • 불필요한 코드는 제거했나요?

@seokhwan13 seokhwan13 self-assigned this Nov 14, 2025
@seokhwan13 seokhwan13 added the ✨ Feature 기능 개발 label Nov 14, 2025
Copy link
Collaborator

@luaerix luaerix left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

✨ Feature 기능 개발

Projects

None yet

Development

Successfully merging this pull request may close these issues.

프론트 회원가입 기능 구현

3 participants