import { __, sprintf } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import OnboardingHeader from '../../ReusableComponents/OnboardingHeader'; import PaymentMethodIcons from '../../ReusableComponents/PaymentMethodIcons'; import Separator from '../../ReusableComponents/Separator'; import BadgeBox, { BADGE_BOX_TITLE_BIG, } from '../../ReusableComponents/BadgeBox'; import AdvancedOptionsForm from './Components/AdvancedOptionsForm'; import AccordionSection from '../../ReusableComponents/AccordionSection'; const StepWelcome = ( { setStep, currentStep, setCompleted } ) => { return (
to pay via PayPal, Pay Later, all major credit/debit cards, Apple Pay, Google Pay, and more.', 'woocommerce-paypal-payments' ) } />

{ __( `Click the button below to be guided through connecting your existing PayPal account or creating a new one.You will be able to choose the payment options that are right for your store.`, 'woocommerce-paypal-payments' ) }

); }; const WelcomeFeatures = () => { return (
{ __( 'Deposits', 'woocommerce-paypal-payments' ) }

{ __( 'Instant', 'woocommerce-paypal-payments' ) }

{ __( 'Payment Capture', 'woocommerce-paypal-payments' ) }

{ __( 'Authorize only or Capture', 'woocommerce-paypal-payments' ) }

{ __( 'Recurring payments', 'woocommerce-paypal-payments' ) }

{ __( 'Supported', 'woocommerce-paypal-payments' ) }

); }; const WelcomeDocs = () => { const pricesBasedDescription = sprintf( // translators: %s: Link to PayPal REST application guide __( '1Prices based on domestic transactions as of October 25th, 2024. Click here for full pricing details.', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ); return (

{ __( `Want to know more about PayPal Payments?`, 'woocommerce-paypal-payments' ) }

1', 'woocommerce-paypal-payments' ) } description={ __( 'Our all-in-one checkout solution lets you offer PayPal, Venmo, Pay Later options, and more to help maximise conversion', 'woocommerce-paypal-payments' ) } /> Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } /> Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } /> Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } /> Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } />
1', 'woocommerce-paypal-payments' ) } description={ sprintf( // translators: %s: Link to PayPal REST application guide __( 'Style the credit card fields to match your own style. Includes advanced processing with risk management, 3D Secure, fraud protection options, and chargeback protection. Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } /> 1', 'woocommerce-paypal-payments' ) } description={ sprintf( // translators: %s: Link to PayPal REST application guide __( 'Accept Apple Pay on eligible devices and Google Pay through mobile and web. Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } /> 1', 'woocommerce-paypal-payments' ) } description={ sprintf( // translators: %s: Link to PayPal REST application guide __( 'Seamless payments for customers across the globe using their preferred payment methods. Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } /> 1', 'woocommerce-paypal-payments' ) } description={ sprintf( // translators: %s: Link to PayPal REST application guide __( 'Speed up guest checkout with Fatslane. Link a customer\'s email address to their payment details. Learn more', 'woocommerce-paypal-payments' ), 'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input ' ) } />

); }; export default StepWelcome;