mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-07-30 10:30:16 +00:00
- Created a new Payments page with multiple sections including Hero, Why Choose, Advanced Features, Stablecoins, Embedded Payments, Partner Logos, Flexible Integration, Developer Spotlight, and Stay Connected. - Each section is designed to highlight various aspects of the XRP Ledger Payments Infrastructure, featuring components like FeaturedVideoHero and CardsIconGrid. - Added corresponding styles and images to enhance the visual presentation of the new sections.
30 lines
869 B
TypeScript
30 lines
869 B
TypeScript
import React from 'react';
|
|
import { useThemeHooks } from '@redocly/theme/core/hooks';
|
|
import FeaturedVideoHero from 'shared/sections/FeaturedVideoHero/FeaturedVideoHero';
|
|
|
|
export const AdvancedFeaturesSection: React.FC = () => {
|
|
const { useTranslate } = useThemeHooks();
|
|
const { translate } = useTranslate();
|
|
|
|
return (
|
|
<FeaturedVideoHero
|
|
headline={translate('Advanced Payment Features')}
|
|
subtitle={translate(
|
|
'Helping fintechs and payment providers move money fast, globally, and at low cost - all through simple APIs.',
|
|
)}
|
|
video={{
|
|
source: {
|
|
type: 'embed',
|
|
embedUrl: 'https://www.youtube.com/embed/e2Iwsk37LMk',
|
|
},
|
|
}}
|
|
links={[
|
|
{
|
|
label: translate('Learn More'),
|
|
href: 'https://xrpl.org/docs/concepts/payment-types',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
};
|