Conversation
- Added seox as a workspace dependency in package.json and bun.lock. - Updated seox version to 1.3.0 in bun.lock. - Integrated JsonLd component for structured data in layout.tsx. - Enhanced metadata generation in page.tsx to include canonical URLs and Twitter metadata. - Improved seoConfig in seo.ts with additional structured data and FAQ schema.
- Added a newline at the end of package.json for proper formatting. - Updated seoConfig in seo.ts with additional metadata fields including description, keywords, and structured data for improved SEO integration.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Modified the build:docs script to ensure it runs the build command before executing the app-specific build, aligning it with the build:landing script for consistency.
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.
This pull request introduces comprehensive SEO improvements for both the documentation and landing apps by centralizing and enhancing SEO configuration using the
seoxlibrary. The changes add more detailed and structured metadata, Open Graph, Twitter, and JSON-LD data, and ensure consistent SEO across the site. The documentation app now consumes the shared SEO config, and both apps provide richer structured data for better search engine optimization.SEO Integration and Centralization:
seoConfiginapps/docs/src/lib/seo.tsusing theseoxlibrary, with extensive metadata, Open Graph, Twitter, robots, and multiple JSON-LD schemas (WebSite, TechArticle, HowTo, BreadcrumbList) for rich SEO and structured data.apps/landing/lib/seo.tsto include more keywords, detailed Open Graph/Twitter metadata, new JSON-LD schemas (WebSite, Organization, FAQPage), and richer descriptions for improved discoverability. [1] [2] [3] [4]Documentation App SEO Usage:
seoConfigfor generating page metadata, including canonical URLs, Open Graph, and Twitter card data inapps/docs/src/app/docs/[[...slug]]/page.tsx. (apps/docs/src/app/docs/[[...slug]]/page.tsxR11, apps/docs/src/app/docs/[[...slug]]/page.tsxL63-R84)seoxdependency to the docs app and rendered JSON-LD in the<head>via theJsonLdcomponent in the root layout for structured data. [1] [2]Release and Configuration:
.github/release-please-config.jsonto track the latest release SHA for theseoxpackage and clarified tag formatting options.