Skip to content

feat(IN-320): EP-03, 04, 07 SEO 적용 완료#149

Merged
kimYunHyeong merged 2 commits into
developfrom
IN-320
Jun 8, 2026
Merged

feat(IN-320): EP-03, 04, 07 SEO 적용 완료#149
kimYunHyeong merged 2 commits into
developfrom
IN-320

Conversation

@kimYunHyeong

@kimYunHyeong kimYunHyeong commented Jun 8, 2026

Copy link
Copy Markdown
Collaborator

📌 작업 개요

EP-03, 04, 07 SEO 적용 완료

🗂 작업 유형

해당하는 항목에 x를 채워 주세요.

  • 기능 추가 (feat)
  • 버그 수정 (fix)
  • 리팩토링 (refactor)
  • 스타일 / UI 수정 (style)
  • 성능 개선 (perf)
  • 테스트 (test)
  • 기타 (chore, docs 등)

✏️ 작업 내용

✅ 셀프 체크리스트

머지 전 직접 확인해 주세요.

  • 로컬에서 정상 동작 확인
  • 불필요한 콘솔 로그, 주석, 디버그 코드 제거
  • 타입 에러 없음

💬 리뷰어에게

Summary by CodeRabbit

릴리스 노트

  • 새로운 기능

    • 하단 네비게이션 항목이 클릭 가능한 링크로 변경되었습니다.
  • 개선 사항

    • 전체 애플리케이션의 페이지에 SEO 메타데이터를 추가하여 검색 엔진 최적화를 개선했습니다.

@vercel

vercel Bot commented Jun 8, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
inflace Ready Ready Preview, Comment Jun 8, 2026 8:30am

@coderabbitai

coderabbitai Bot commented Jun 8, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@kimYunHyeong, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 53 minutes and 37 seconds. Learn how PR review limits work.

Your organization has run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: e6cc390c-7cb2-419d-b8d5-bdd372f994b1

📥 Commits

Reviewing files that changed from the base of the PR and between 88a8993 and 848f3e2.

📒 Files selected for processing (1)
  • app/(public)/login/page.tsx

Walkthrough

Next.js App Router 라우트의 메타데이터 선언 방식을 리팩토링했습니다. 기존 .ts 파일의 간접 재내보내기 패턴을 제거하고, 각 라우트 모듈에서 직접 metadata 상수 및 Page/Layout 컴포넌트를 내보내도록 통일했습니다. 추가로 인증 엔드포인트의 디버그 로그를 정리하고 푸터 네비게이션을 next/link로 개선했습니다.

Changes

보호된 및 공개 라우트 메타데이터 마이그레이션

Layer / File(s) Summary
보호된 라우트 메타데이터 마이그레이션
app/(protected)/(channelLinked)/competitor/page.ts, app/(protected)/(channelLinked)/competitor/page.tsx, app/(protected)/influencer/[channelId]/page.ts, app/(protected)/influencer/[channelId]/page.tsx, app/(protected)/influencer/bookmarked/page.ts, app/(protected)/influencer/bookmarked/page.tsx, app/(protected)/me/layout.ts, app/(protected)/me/layout.tsx
경쟁사, 인플루언서 상세, 북마크, 마이페이지 라우트에서 default 재내보내기 제거 및 .tsx 파일에 metadata 상수와 Page/Layout 컴포넌트 추가로 메타데이터 선언 통일
공개 라우트 메타데이터 마이그레이션
app/(public)/influencer/page.ts, app/(public)/influencer/page.tsx, app/(public)/login/page.ts, app/(public)/login/page.tsx, app/(public)/privacy/page.ts, app/(public)/privacy/page.tsx, app/(public)/terms/page.ts, app/(public)/terms/page.tsx
공개 인플루언서, 로그인, 개인정보보호, 이용약관 라우트에서 default 재내보내기 제거 및 .tsx 파일에 metadata 상수와 Page 컴포넌트 추가로 메타데이터 선언 통일
정리 및 UI 개선
app/auth/refresh/route.ts, src/widgets/layout/footer/ui/FooterNav.tsx
토큰 갱신 엔드포인트의 console.log 디버그 로그 2줄 제거 및 푸터 네비게이션 항목을 next/link Link 컴포넌트로 변경하여 클릭 가능한 링크 제공

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Possibly related PRs

Suggested reviewers

  • juuhye
  • shunn2

Poem

🐰 라우트의 길을 정리하니
메타데이터 직선으로 반짝이고
복잡한 재내보내기는 안녕,
링크는 이제 next/link로 춤을 춘다
깔끔해진 라우트, 행복한 배포! ✨

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Description check ❓ Inconclusive PR 설명이 템플릿을 따르고 있으나, 작업 내용(✏️ 작업 내용) 섹션이 완전히 비어있어 변경 사항에 대한 구체적인 설명이 부족합니다. ✏️ 작업 내용 섹션에 변경 사항의 구체적인 설명을 추가하세요. (예: 어떤 페이지들에 메타데이터를 추가했는지, 레이아웃 변경 사항 등)
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed PR 제목은 SEO 적용 완료라는 주요 변경 사항을 명확하게 요약하고 있으며, 변경 사항과 직접적으로 관련이 있습니다.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch IN-320

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@app/`(public)/login/page.tsx:
- Line 4: The page title constant title is incorrect for the login page; update
the value of the const title in app/(public)/login/page.tsx from '마이페이지 | 인플레이스'
to a title that matches the page intent (e.g., '로그인 | 인플레이스' or an English
equivalent) so the document title/SEO reflects the /login page; locate the const
title declaration in this file and replace its string with the appropriate
login-specific title.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: b8ce60d4-ee89-4a13-9706-6b7cc5c7891a

📥 Commits

Reviewing files that changed from the base of the PR and between 561d26d and 88a8993.

📒 Files selected for processing (18)
  • app/(protected)/(channelLinked)/competitor/page.ts
  • app/(protected)/(channelLinked)/competitor/page.tsx
  • app/(protected)/influencer/[channelId]/page.ts
  • app/(protected)/influencer/[channelId]/page.tsx
  • app/(protected)/influencer/bookmarked/page.ts
  • app/(protected)/influencer/bookmarked/page.tsx
  • app/(protected)/me/layout.ts
  • app/(protected)/me/layout.tsx
  • app/(public)/influencer/page.ts
  • app/(public)/influencer/page.tsx
  • app/(public)/login/page.ts
  • app/(public)/login/page.tsx
  • app/(public)/privacy/page.ts
  • app/(public)/privacy/page.tsx
  • app/(public)/terms/page.ts
  • app/(public)/terms/page.tsx
  • app/auth/refresh/route.ts
  • src/widgets/layout/footer/ui/FooterNav.tsx
💤 Files with no reviewable changes (9)
  • app/(public)/terms/page.ts
  • app/(protected)/influencer/[channelId]/page.ts
  • app/(protected)/influencer/bookmarked/page.ts
  • app/auth/refresh/route.ts
  • app/(public)/privacy/page.ts
  • app/(public)/influencer/page.ts
  • app/(protected)/(channelLinked)/competitor/page.ts
  • app/(public)/login/page.ts
  • app/(protected)/me/layout.ts

Comment thread app/(public)/login/page.tsx Outdated
@kimYunHyeong kimYunHyeong merged commit ed5ec7c into develop Jun 8, 2026
2 of 3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant