/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { chevronLeft } from '@wordpress/icons'; /** * Internal dependencies */ import { CustomizeStoreComponent } from '../types'; import './intro.scss'; export type events = | { type: 'DESIGN_WITH_AI' } | { type: 'CLICKED_ON_BREADCRUMB' } | { type: 'SELECTED_BROWSE_ALL_THEMES' } | { type: 'SELECTED_ACTIVE_THEME' } | { type: 'SELECTED_NEW_THEME'; payload: { theme: string } }; export * as actions from './actions'; export * as services from './services'; export const Intro: CustomizeStoreComponent = ( { sendEvent, context } ) => { const { intro: { themeCards }, } = context; return ( <>

{ 'Site title' }

{ __( 'Customize your store', 'woocommerce' ) }

{ __( 'Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI.', 'woocommerce' ) }

{ __( 'Use the power of AI to design your store', 'woocommerce' ) }

{ __( 'Design the look of your store, create pages, and generate copy using our built-in AI tools.', 'woocommerce' ) }

{ __( 'Or select a professionally designed theme to customize and make your own.', 'woocommerce' ) }

{ themeCards?.map( ( themeCard ) => (
{

{ themeCard.name }

) ) }
); };