/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; const { Fragment } = wp.element; import map from 'lodash/map'; const { withFilters, TabPanel, Panel, PanelBody, PanelRow, Button } = wp.components; export const CustomizerLinks = () => { const headerLinks = [ { title: __( 'Global Colors', 'kadence' ), description: __( 'Setup the base color scheme for your site.', 'kadence' ), focus: 'kadence_customizer_general_colors', type: 'section', setting: false }, { title: __( 'Branding', 'kadence' ), description: __( 'Upload your logo and favicon.', 'kadence' ), focus: 'title_tagline', type: 'section', setting: false }, { title: __( 'Typography', 'kadence' ), description: __( 'Choose the perfect font family, style and sizes.', 'kadence' ), focus: 'kadence_customizer_general_typography', type: 'section', setting: false }, { title: __( 'Header Layout', 'kadence' ), description: __( 'Add elements and arrange them how you want.', 'kadence' ), focus: 'kadence_customizer_header', type: 'panel', setting: false }, { title: __( 'Page Layout', 'kadence' ), description: __( 'Define your sites general page look and feel for page title, and content style.', 'kadence' ), focus: 'kadence_customizer_page_layout', type: 'section', setting: false }, { title: __( 'Footer Layout', 'kadence' ), description: __( 'Customize the columns and place widget areas in unlimited configurations', 'kadence' ), focus: 'kadence_customizer_footer_layout', type: 'section', setting: false }, ]; return (

{ __( 'Customize Your Site', 'kadence' ) }

{ map( headerLinks, ( link ) => { return (

{ link.title }

{ link.description }

{ __( 'Customize', 'kadence') }
); } ) }
); }; export default withFilters( 'kadence_theme_customizer' )( CustomizerLinks );