Skip to content

구글 서치 콘솔 메타데이터 추가#266

Merged
kimnamheeee merged 2 commits into
devfrom
add-metadata
Jan 15, 2026
Merged

구글 서치 콘솔 메타데이터 추가#266
kimnamheeee merged 2 commits into
devfrom
add-metadata

Conversation

@kimnamheeee

@kimnamheeee kimnamheeee commented Jan 15, 2026

Copy link
Copy Markdown
Contributor

📝 설명

🛠️ 주요 변경 사항

리뷰 시 고려해야 할 사항

Summary by CodeRabbit

릴리스 노트

  • Chores
    • 구글 사이트 검증용 메타 태그(verification.google)를 루트 메타데이터에 추가했습니다. 이를 통해 Google 소유권 확인이 가능해집니다.
    • 이 변경은 사용자 인터페이스나 공개 동작에는 영향을 주지 않으며, 기존 공개 엔티티 선언에는 변경이 없습니다.

✏️ Tip: You can customize this high-level summary in your review settings.

@coderabbitai

coderabbitai Bot commented Jan 15, 2026

Copy link
Copy Markdown

Walkthrough

루트 레이아웃의 metadata 객체 내 icons 블록에 verification.google(Google 사이트 검증) 필드가 추가되었습니다. 변경은 메타데이터 상수에 검증 문자열을 포함시키는 내용뿐입니다. (50단어 이내)

Changes

Cohort / File(s) 변경 사항
Google 사이트 검증 메타 태그
service/app/src/app/layout.tsx
metadata.iconsverification: { google: "<검증_문자열>" } 필드 추가 (+3/-0)

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Suggested labels

👩🏻‍💻frontend

Suggested reviewers

  • whdgur5717

Poem

🐰 한 줄의 검증 문자열,
메타 속에 살며시 들어가,
검색의 문을 두드리네.
작은 점 하나로 반짝이는,
우리 사이트의 하루를 축하해! ✨

🚥 Pre-merge checks | ✅ 1 | ❌ 2
❌ Failed checks (2 warnings)
Check name Status Explanation Resolution
Description check ⚠️ Warning PR 설명이 템플릿 구조만 있고 모든 필수 섹션이 비어있어 구체적인 정보가 전혀 제공되지 않았습니다. 설명(📝 설명) 섹션, 주요 변경 사항(🛠️ 주요 변경 사항) 섹션, 그리고 필요한 경우 리뷰 시 고려 사항을 작성해주세요.
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.
✅ Passed checks (1 passed)
Check name Status Explanation
Title check ✅ Passed PR 제목은 변경 사항의 주요 내용인 Google Search Console 메타데이터 추가를 명확하게 설명하고 있습니다.

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

✨ Finishing touches
  • 📝 Generate docstrings


📜 Recent review details

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between bc8d94c and 62664fe.

📒 Files selected for processing (1)
  • service/app/src/app/layout.tsx
🚧 Files skipped from review as they are similar to previous changes (1)
  • service/app/src/app/layout.tsx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: ci

✏️ Tip: You can disable this entire section by setting review_details to false in your review settings.


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

🤖 Fix all issues with AI agents
In `@service/app/src/app/layout.tsx`:
- Around line 52-55: The meta tag for Google site verification is incorrectly
placed inside the rendered HTML; remove the manual <meta> element (lines 52-55)
and instead add the token to the existing metadata export using the verification
property (e.g., export const metadata = { ..., verification: { google:
"59Yy5G36T2doFkw86V9zLyWe88Z-Hb8V0eowJmNRcq0" } } ) so Next.js App Router
injects it into <head>.
📜 Review details

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 07de370 and bc8d94c.

📒 Files selected for processing (1)
  • service/app/src/app/layout.tsx
🧰 Additional context used
📓 Path-based instructions (8)
**/*

📄 CodeRabbit inference engine (CLAUDE.md)

All file names must be camelCase (not PascalCase or kebab-case)

Files:

  • service/app/src/app/layout.tsx
**/*.{ts,tsx}

📄 CodeRabbit inference engine (CLAUDE.md)

**/*.{ts,tsx}: Component names must use PascalCase in the code (while file names use camelCase)
Use Zustand for client-side state management
Use TanStack Query for server state and API caching
Use async/await for promises instead of .then() chains
Use custom fetch client with interceptors from shared/lib/fetchClient.ts for API requests

**/*.{ts,tsx}: Use TypeScript with ES modules; keep files lower-case kebab or camel per existing folder conventions (e.g., gameLibraryGrid.tsx)
Favor explicit domain names (e.g., GameCardOptions, useInfiniteMyGames) and colocate UI, API, and hooks within each entities/<domain> module
Run ESLint using lint scripts; linting is enforced via lint-staged

Files:

  • service/app/src/app/layout.tsx
**/*.{js,ts,jsx,tsx}

📄 CodeRabbit inference engine (CLAUDE.md)

Use shared ESLint configuration across all workspaces

Files:

  • service/app/src/app/layout.tsx
**/*.{js,ts,jsx,tsx,css}

📄 CodeRabbit inference engine (CLAUDE.md)

Use Prettier with Tailwind CSS plugin for formatting

Files:

  • service/app/src/app/layout.tsx
**/*.{ts,tsx,css}

📄 CodeRabbit inference engine (AGENTS.md)

Use 2-space indentation throughout the codebase

Files:

  • service/app/src/app/layout.tsx
**/*.{ts,tsx,css,json,md}

📄 CodeRabbit inference engine (AGENTS.md)

Apply Prettier formatting using yarn workspace <pkg> format; this is enforced via lint-staged

Files:

  • service/app/src/app/layout.tsx
**/src/app/**/*.tsx

📄 CodeRabbit inference engine (AGENTS.md)

In the Next.js app workspace, UI routes live in src/app

Files:

  • service/app/src/app/layout.tsx
**/*.tsx

📄 CodeRabbit inference engine (AGENTS.md)

Tailwind CSS utilities should be ordered via the Prettier Tailwind plugin; avoid inline style objects unless necessary

Files:

  • service/app/src/app/layout.tsx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: ci

✏️ Tip: You can disable this entire section by setting review_details to false in your review settings.

Comment thread service/app/src/app/layout.tsx Outdated
@github-actions

github-actions Bot commented Jan 15, 2026

Copy link
Copy Markdown

Deploy preview for re-creation ready!

✅ Preview
https://re-creation-hce4einkq-whdgur5717s-projects.vercel.app

Built with commit 62664fe.
This pull request is being automatically deployed with vercel-action

@kimnamheeee kimnamheeee merged commit 397364a into dev Jan 15, 2026
2 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