/** * External dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import { WCSBanner } from '../../experimental-shipping-recommendation/components/wcs-banner'; import { SinglePartnerFeatures } from '../single-partner-features'; import { PluginBanner } from '../../experimental-shipping-recommendation/components/plugin-banner'; import ShipStationImage from './assets/shipstation.svg'; import SendcloudImage from './assets/sendcloud-banner-side.svg'; import PacklinkImage from './assets/packlink-banner-side.svg'; import EnviaImage from './assets/envia-banner-side.svg'; import SkydropxImage from './assets/skydropx-banner-side.svg'; import CheckIcon from './assets/check.svg'; import SendCloudColumnImage from './assets/sendcloud-column-logo.svg'; import PacklinkColumnImage from './assets/packlink-column-logo.svg'; import ShipStationColumnImage from './assets/shipstation-column-logo.svg'; /** * Banner layout for Envia */ export const EnviaSinglePartner = () => { return ( ); }; /** * Banner layout for Envia */ export const SkydropxSinglePartner = () => { return ( ); }; /** * Banner layout for Sendcloud */ export const SendcloudSinglePartner = () => { return ( ); }; /** * Narrow Column Layout for Sendcloud */ export const SendcloudDualPartner = ( { children, }: { children: React.ReactNode; } ) => { const features = [ { icon: CheckIcon, description: __( 'Print labels from 80+ carriers', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Process orders in just a few clicks', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Customize checkout options', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Self-service tracking & returns', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Start with a free plan', 'woocommerce' ), }, ]; return ( { children } ); }; /** * Banner layout for Packlink */ export const PacklinkSinglePartner = () => { return ( ); }; /** * Narrow Column Layout for Packlink */ export const PacklinkDualPartner = ( { children, }: { children: React.ReactNode; } ) => { const features = [ { icon: CheckIcon, description: __( 'Automated, real-time order import', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Direct access to leading carriers', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Access competitive shipping prices', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Quickly bulk print labels', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Free shipping platform', 'woocommerce' ), }, ]; return ( { children } ); }; /** * Banner layout for ShipStation */ export const ShipStationSinglePartner = () => { return ( ); }; /** * Narrow Column Layout for ShipStation */ export const ShipStationDualPartner = ( { children, }: { children: React.ReactNode; } ) => { const features = [ { icon: CheckIcon, description: __( 'Print labels from Royal Mail, Parcel Force, DPD, and many more', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Shop for the best rates, in real-time', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Connect selling channels easily', 'woocommerce' ), }, { icon: CheckIcon, description: __( 'Advance automated workflows', 'woocommerce' ), }, { icon: CheckIcon, description: __( '30-days free trial', 'woocommerce' ), }, ]; return ( { children } ); }; export const WooCommerceShippingSinglePartner = () => { return ; };