/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { check, commentContent, shield } from '@wordpress/icons'; import { createInterpolateElement } from '@wordpress/element'; /** * Internal dependencies */ import './footer.scss'; import IconWithText from '../icon-with-text/icon-with-text'; import WooIcon from '../../assets/images/woo-icon.svg'; import { MARKETPLACE_HOST } from '../constants'; const refundPolicyTitle = createInterpolateElement( __( '30 day money back guarantee', 'woocommerce' ), { // eslint-disable-next-line jsx-a11y/anchor-has-content a: , } ); const supportTitle = createInterpolateElement( __( 'Get help when you need it', 'woocommerce' ), { // eslint-disable-next-line jsx-a11y/anchor-has-content a: , } ); const paymentTitle = createInterpolateElement( __( 'Products you can trust', 'woocommerce' ), { // eslint-disable-next-line jsx-a11y/anchor-has-content a: , } ); function FooterContent(): JSX.Element { return (

{ __( 'Hundreds of vetted products and services. Unlimited potential.', 'woocommerce' ) }

{ __( 'Woo Marketplace', 'woocommerce' ) }
); } export default function Footer(): JSX.Element { return (
); }