- WordPress classic theme for car tinting/foil shop - 13 homepage template parts - Customizer panel with 13 sections - RFQ inquiry form handler - Bootstrap 5.3 + AOS + Colorbox frontend - 13 SVG placeholder images - Chinese content defaults
11 lines
604 B
PHP
11 lines
604 B
PHP
<?php
|
|
/** Booking call-to-action band on the homepage. @package Fragrance_Trade */
|
|
?>
|
|
<section class="b2b-section cta-section">
|
|
<div class="container text-center">
|
|
<h2><?php esc_html_e( '准备好为爱车贴膜了吗?', 'fragrance-trade' ); ?></h2>
|
|
<p class="section-lead mx-auto"><?php esc_html_e( '留下您的车型与需求,我们会尽快与您联系,确认到店施工时间。', 'fragrance-trade' ); ?></p>
|
|
<a href="<?php echo esc_url( home_url( '/contact/' ) ); ?>" class="btn btn-b2b-primary btn-lg"><?php esc_html_e( '立即预约', 'fragrance-trade' ); ?></a>
|
|
</div>
|
|
</section>
|