fix(seo): Google 소유권 검증값 갱신 - #125
Conversation
Search Console URL 접두어 속성의 HTML 태그 검증값을 갱신했습니다.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 3c9c532cd1
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| position: sticky; | ||
| top: 2.5rem; | ||
| height: calc(100dvh - 5rem); | ||
| align-self: end; |
There was a problem hiding this comment.
Keep desktop external links in the initial viewport
On non-mobile routes whose content makes grid row 1 taller than the viewport, such as Archive and long articles, align-self: end places this viewport-height footer at the end of that row; position: sticky does not pull an element upward before its normal position, so GitHub, Email, and RSS are absent from the initial viewport. The changed E2E assertion only requires github.y > 780, so an arbitrarily far-offscreen link still passes. Keep the footer aligned at the row start and bottom-align only its contents, or retain the links in the sticky identity rail.
AGENTS.md reference: AGENTS.md:L94-L95
Useful? React with 👍 / 👎.
| const slugToFolderCache = new Map<string, string>(); | ||
| let cachedSortedFeedData: FeedData[] | null = null; | ||
|
|
||
| function normalizeSlug(slug: string): string { |
There was a problem hiding this comment.
Remove unrelated behavior changes from the SEO-only commit
The commit description limits its impact to replacing the Google verification metadata, but this addition also changes every post-slug lookup, while other files redesign AppShell/footer behavior and rewrite navigation tests. None of those behavioral changes is required to rotate the verification token, so they should be removed from this commit or reviewed as separately scoped work rather than shipping under a metadata-only change.
AGENTS.md reference: AGENTS.md:L5-L5
Useful? React with 👍 / 👎.
| grid-column: 1; | ||
| grid-row: 1; | ||
| position: sticky; | ||
| top: 2.5rem; | ||
| height: calc(100dvh - 5rem); |
There was a problem hiding this comment.
Let pointer events reach the desktop brand link
On non-mobile short routes such as the home page, this viewport-height footer occupies the same first-column, first-row grid cell as .ark-site-identity. Because the footer follows the aside in the DOM and retains the default pointer-events: auto, its transparent box is hit-tested over the ark brand link, preventing pointer users from activating that home link. Disable pointer events on the overlapping footer box while retaining them on .ark-site-external-links, or avoid overlapping the two full-height grid items.
AGENTS.md reference: AGENTS.md:L94-L95
Useful? React with 👍 / 👎.
변경 내용
의도
https://ark-log.vercel.app/URL 접두어 속성을 검증하고 sitemap 제출을 가능하게 합니다.영향 범위
검증
npm run build체크리스트
codex/fix-public-post-mobile-shell)에서 진행함