Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
af0e891
feat: 기존 카운터 기능 제거
ysw789 Jun 16, 2026
67b6551
feat: 관리자 상태 스토어 및 데이터 추가
ysw789 Jun 16, 2026
d2e5381
feat: 관리자 페이지 헤더 및 사이드바 레이아웃 구현
ysw789 Jun 16, 2026
a7b1eee
feat: Badge UI 컴포넌트 및 관리자 모달 추가
ysw789 Jun 16, 2026
0445fa9
feat: 관리자 페이지 뷰 컴포넌트 구현
ysw789 Jun 16, 2026
2d5ea53
chore: 관리자 페이지 전환을 위한 앱 설정 업데이트
ysw789 Jun 16, 2026
e1065a2
chore: 패키지 의존성 업데이트
ysw789 Jun 17, 2026
a166d1e
feat: 앱 기본 설정 및 프로바이더 구조 업데이트
ysw789 Jun 17, 2026
f24c3fb
feat: 관리자 페이지 뷰 컴포넌트 구현
ysw789 Jun 17, 2026
c4be46b
feat: 관리자 페이지 리스트 데이터 추가
ysw789 Jun 17, 2026
c0a9ef1
feat: 관리자 상태 스토어 및 데이터 추가
ysw789 Jun 17, 2026
93d7cd0
feat: 관리자 페이지 헤더 및 모달 컴포넌트 추가
ysw789 Jun 17, 2026
bf85af4
feat: 인증 및 API 통신 설정 추가
ysw789 Jun 17, 2026
3e931f7
feat: 공유 타입 정의 추가
ysw789 Jun 17, 2026
9be0e7d
feat: React Query 키 설정 추가
ysw789 Jun 17, 2026
f985c67
feat: 신규 기능 모듈 구조 추가
ysw789 Jun 17, 2026
0efae8f
feat: 로그인 페이지 구현
ysw789 Jun 17, 2026
55b0cbf
chore: 환경 변수 예제 파일 추가
ysw789 Jun 17, 2026
902f7f5
feat: 업장 관리 탭 구조 및 부제 기능 추가
ysw789 Jun 17, 2026
8ab0dc8
feat: 리스트 페이지에 부제 렌더링 추가
ysw789 Jun 17, 2026
aaa2c93
feat: 업장 등록 신청 뷰에 탭 및 부제 추가
ysw789 Jun 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_API_URL=http://127.0.0.1:8080/api
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ dist-ssr
*.sln
*.sw?

.env
.env

.claude
CLAUDE.md
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
<!doctype html>
<html lang="en">
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>alter-admin</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"
/>
<title>Alter 관리자</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading