feat(seo): title/meta最適化 + JSON-LD構造化データ実装(#40, #41) - #59
Merged
Conversation
- トップページに WebApplication + Organization JSON-LD を追加 - ブログ記事の Article JSON-LD を拡充(dateModified, author, reviewedBy, mainEntityOfPage) - author/publisher を「第29大阪技術局」Organization に統一 - reviewedBy に監修薬剤師の Person スキーマを追加 - page.tsx をサーバーコンポーネント化し、HomePage に 'use client' を移動
- ルート layout.tsx の title/description/OG/Twitter を日本語KW含むものに更新 - ブログ一覧の title/description を服薬管理KW含むものに更新 - プライバシーポリシー・利用規約の metadata を日本語化 - login/changelog/settings/medications/logs/demo に layout.tsx を追加し metadata を設定 - 認証後ページ(settings/medications/logs)は noindex 設定 - 全ブログ記事の frontmatter description を確認済み(変更不要)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
M1: SEO / Rich Results の priority:critical 2件を対応。
#40 title / meta description 最適化
#41 JSON-LD 構造化データ実装
変更ファイル
src/app/layout.tsx— ルート metadata 更新src/app/page.tsx— サーバーコンポーネント化 + WebApplication/Organization JSON-LDsrc/components/HomePage.tsx— 'use client' 追加src/app/blog/page.tsx— metadata 最適化src/app/blog/[slug]/page.tsx— Article JSON-LD 拡充src/app/privacy/layout.tsx,src/app/terms/layout.tsx— 日本語化src/app/{login,changelog,settings,medications,logs,demo}/layout.tsx— 新規 metadataテストプラン
npx next build --webpackが通るCloses #40
Closes #41