Files
xrpl-dev-portal/payments/sections/AdvancedFeaturesSection.tsx
gabriel-ortiz df6a1587f1 Add Payments Page and Sections
- 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.
2026-05-05 16:57:13 -07:00

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',
},
]}
/>
);
};