Merge pull request #2382 from XRPLF/xrpl-redocly-seo

adds seo title description and h1 changes
This commit is contained in:
Amarantha Kulkarni
2024-02-07 13:39:18 -08:00
committed by GitHub
5 changed files with 14 additions and 11 deletions

View File

@@ -28,10 +28,12 @@ export function indexPages() {
const childRoutesData = await Promise.all(
childRoutes.map(async route => {
const { parsed } = contentProvider.loadContent(route.fsPath, 'frontmatter');
const slug = route.slug;
const title = await route.getNavText();
return {
...parsed?.data,
slug: route.slug,
title: await route.getNavText(),
slug,
title,
};
})
);

View File

@@ -4,9 +4,10 @@ parent: concepts.html
metadata:
indexPage: true
seo:
description: The XRP Ledger supports point-to-point XRP payments alongside other, more specialized payment types.
title: Point-to-Point & Specialized Ledger Payment Types | XRPL.org
description: While XRP Ledger supports point-to-point XRP payments, it's also compatible with more specialized payment types. Discover which ledger payment methods here.
---
# Payment Types
# Ledger Payment Types
The XRP Ledger supports point-to-point XRP payments alongside other, more specialized payment types.

View File

@@ -2,14 +2,15 @@
html: automated-market-makers.html
parent: decentralized-exchange.html
seo:
description: Automated Market Makers (AMMs) provide liquidity between asset pairs, complemeting the order books in the decentralized exchange while providing passive income for their liquidity providers.
title: What Is an Automated Market Maker (AMM) | XRPL.org
description: Discover how Automated Market Makers (AMMs) provide liquidity between asset pairs in the decentralized exchange while providing passive income.
status: not_enabled
labels:
- XRP
- Decentralized Exchange
- AMM
---
# Automated Market Makers
# What Is an Automated Market Maker (AMM)?
_(Requires the [AMM amendment][] {% not-enabled /%})_

View File

@@ -3,8 +3,8 @@ import { useTranslate } from '@portal/hooks';
export const frontmatter = {
seo: {
title: 'Documentation',
description: "Explore XRP Ledger documentation and everything you need to know to start building and integrating with the ledger.",
title: 'XRP Ledger Documentation & Developer Resources | XRPL.org',
description: "Explore XRP Ledger documentation and other blockchain developer resources needed to start building and integrating with the ledger.",
}
};

View File

@@ -1,10 +1,9 @@
import * as React from 'react';
import { useTranslate } from '@portal/hooks';
export const frontmatter = {
seo: {
title: 'Home | XRPL.org',
description: "XRPL.org is a community-driven site for the XRP Ledger (XRPL), an open-source, public blockchain. Get technical documentation, reference materials, and tools.",
title: 'XRP Ledger Home | XRPL.org',
description: "XRPL.org is a community-driven site for the XRP Ledger (XRPL), an open-source, public blockchain. Gain access to technical documentation, reference materials, and blockchain ledger tools.",
}
};