PluginProbe
CartFlows – Funnel Builder & Checkout Plugin for WooCommerce / trunk
CartFlows – Funnel Builder & Checkout Plugin for WooCommerce vtrunk
3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.1 trunk 1.0.4 1.1.0 1.1.0.1 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 All 160 releases
cartflows / wizard / assets / src / wizard-steps / components / GlobalFlowHeader.js

GlobalFlowHeader.js in CartFlows – Funnel Builder & Checkout Plugin for WooCommerce trunk, at wizard/assets/src/wizard-steps/components/GlobalFlowHeader.js

41 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import React from 'react';
2 import { __ } from '@wordpress/i18n';
3
4 function GlobalFlowHeader() {
5 return (
6 <div className="overflow-hidden max-w-full text-center">
7 <div className="px-6 py-5 sm:px-9 sm:py-8">
8 <span className="text-sm font-medium text-primary-600 mb-10 text-center block tracking-[.24em] uppercase">
9 { __( 'Step 4 of 6', 'cartflows' ) }
10 </span>
11 <h1 className="wcf-step-heading mb-4">
12 <span className="flex items-center justify-center gap-3">
13 { __( 'Awesome', 'cartflows' ) }
14 <svg
15 xmlns="http://www.w3.org/2000/svg"
16 className="h-8 w-8 align-middle text-2xl mr-1.5 fill-[#ffc83d]"
17 viewBox="0 0 20 20"
18 fill="currentColor"
19 >
20 <path d="M2 10.5a1.5 1.5 0 113 0v6a1.5 1.5 0 01-3 0v-6zM6 10.333v5.43a2 2 0 001.106 1.79l.05.025A4 4 0 008.943 18h5.416a2 2 0 001.962-1.608l1.2-6A2 2 0 0015.56 8H12V4a2 2 0 00-2-2 1 1 0 00-1 1v.667a4 4 0 01-.8 2.4L6.8 7.933a4 4 0 00-.8 2.4z" />
21 </svg>
22 </span>
23
24 { __(
25 "Now let's setup your new store checkout.",
26 'cartflows'
27 ) }
28 </h1>
29 <p className="text-center overflow-hidden max-w-2xl mb-10 mx-auto text-lg font-normal text-slate-500 block">
30 { __(
31 'Choose one of the store checkout designs below. After setup you can change the text and color or even choose an entirely new store checkout design.',
32 'cartflows'
33 ) }
34 </p>
35 </div>
36 </div>
37 );
38 }
39
40 export default GlobalFlowHeader;
41