| 1 |
<?php |
| 2 |
/** |
| 3 |
* Welcome Step |
| 4 |
*/ |
| 5 |
|
| 6 |
namespace UltimatePostKit\SetupWizard; |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
|
| 12 |
?> |
| 13 |
|
| 14 |
<div class="bdt-wizard-step bdt-text-center active" data-step="welcome"> |
| 15 |
<div class="bdt-welcome-header"> |
| 16 |
<div class="bdt-logo-container"> |
| 17 |
<img src="<?php echo BDTUPK_ASSETS_URL . 'images/logo.svg'; ?>" alt="Ultimate Post Kit Logo" class="bdt-logo"> |
| 18 |
</div> |
| 19 |
<h2><?php esc_html_e( 'Welcome to Ultimate Post Kit', 'ultimate-post-kit' ); ?></h2> |
| 20 |
<p><?php esc_html_e( 'Thank you for choosing Ultimate Post Kit, a leading addon that provides a total web design solution for you. This quick setup wizard will help you configure the basic settings and get you started.', 'ultimate-post-kit' ); ?></p> |
| 21 |
</div> |
| 22 |
|
| 23 |
<div class="bdt-welcome-features"> |
| 24 |
<div class="bdt-features-grid"> |
| 25 |
<div class="bdt-feature-item"> |
| 26 |
<div class="bdt-feature-icon"> |
| 27 |
<span class="dashicons dashicons-admin-customizer"></span> |
| 28 |
</div> |
| 29 |
<h3><?php esc_html_e( '100+ Widgets', 'ultimate-post-kit' ); ?></h3> |
| 30 |
<p><?php esc_html_e( 'Powerful elements for unlimited design possibilities', 'ultimate-post-kit' ); ?></p> |
| 31 |
</div> |
| 32 |
<div class="bdt-feature-item"> |
| 33 |
<div class="bdt-feature-icon"> |
| 34 |
<span class="dashicons dashicons-layout"></span> |
| 35 |
</div> |
| 36 |
<h3><?php esc_html_e( 'Ready Templates', 'ultimate-post-kit' ); ?></h3> |
| 37 |
<p><?php esc_html_e( 'Professional templates to jumpstart your projects', 'ultimate-post-kit' ); ?></p> |
| 38 |
</div> |
| 39 |
<div class="bdt-feature-item"> |
| 40 |
<div class="bdt-feature-icon"> |
| 41 |
<span class="dashicons dashicons-performance"></span> |
| 42 |
</div> |
| 43 |
<h3><?php esc_html_e( 'Fast & Optimized', 'ultimate-post-kit' ); ?></h3> |
| 44 |
<p><?php esc_html_e( 'Built with performance in mind for lightning-fast websites', 'ultimate-post-kit' ); ?></p> |
| 45 |
</div> |
| 46 |
</div> |
| 47 |
</div> |
| 48 |
|
| 49 |
<div class="bdt-wizard-navigation"> |
| 50 |
<button class="bdt-button bdt-button-primary bdt-wizard-next" data-step="features"> |
| 51 |
<?php esc_html_e( 'Get Started', 'ultimate-post-kit' ); ?> |
| 52 |
<span><i class="dashicons dashicons-arrow-right-alt"></i></span> |
| 53 |
</button> |
| 54 |
</div> |
| 55 |
</div> |
| 56 |
|