/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { getSetting } from '@woocommerce/settings'; import { recordEvent } from '@woocommerce/tracks'; import { Button, // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore No types for this exist yet. __unstableMotion as motion, } from '@wordpress/components'; /** * Internal dependencies */ import { SiteHub } from '../assembler-hub/site-hub'; import { MShotsImage } from './mshots-image'; import { ADMIN_URL } from '~/utils/admin-settings'; import './style.scss'; export * as services from './services'; export type events = { type: 'GO_BACK_TO_HOME' }; export const PREVIEW_IMAGE_OPTION = { vpw: 1200, vph: 742, w: 588, h: 363.58, requeue: true, }; export const Transitional = ( { sendEvent, }: { sendEvent: ( event: events ) => void; } ) => { const homeUrl: string = getSetting( 'homeUrl', '' ); return (
{ __( 'Head to the Editor to change your images and text, add more pages, and make any further customizations.', 'woocommerce' ) }
{ __( 'Go back to the Home screen to complete your store setup and start selling', 'woocommerce' ) }