15 lines
697 B
PHP
15 lines
697 B
PHP
<?php
|
|
/** Booking call-to-action band on the homepage. @package Fragrance_Trade */
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
?>
|
|
<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>
|