HEX
Server: Apache/2.4.68 (Debian)
System: Linux as-cs-widget-demo-us-central1 6.1.0-44-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
User: root (0)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-recipe-maker/assets/js/admin-faq/Steps/StepWelcome.js
import React from 'react';
import { __wprm } from 'Shared/Translations';

const StepWelcome = (props) => {
    return (
        <div className="wprm-admin-onboarding-step-welcome">
            <p>
                { __wprm( 'Welcome to WP Recipe Maker!' ) }
            </p>
            <p>
                { __wprm( 'These onboarding steps get you up and running quickly by' ) } <strong>{ __wprm( 'choosing the correct options for your situation' ) }</strong> { __wprm( 'and showing you how to get the most out of this plugin.' ) }
            </p>
            <div className="wprm-admin-onboarding-step-welcome-buttons">
                <button
                    className="button button-primary button-compact"
                    onClick={() => {
                        props.jumpToStep(1);
                    }}
                >{ __wprm( 'Start the onboarding!' ) }</button>
                <a href={ wprm_admin.manage_url + '&skip_onboarding=1' }>{ __wprm( 'or click here to skip' ) }</a>
            </div>
        </div>
    );
}
export default StepWelcome;