<?php
/* Template Name: Home Page */
get_header(); ?>
<section class="hero-banner">
<div class="hero-image">
<!-- 轮播图:你可以用WordPress插件来实现轮播效果 -->
<img src="path_to_your_banner_image.jpg" alt="Hero Banner" />
</div>
</section>
<section class="product-overview">
<h2>我们的精选产品</h2>
<div class="product-categories">
<div class="category-item">
<img src="path_to_category_image_1.jpg" alt="Category 1" />
<p>内衣</p>
</div>
<div class="category-item">
<img src="path_to_category_image_2.jpg" alt="Category 2" />
<p>睡衣</p>
</div>
<div class="category-item">
<img src="path_to_category_image_3.jpg" alt="Category 3" />
<p>配件</p>
</div>
</div>
</section>
<section class="new-arrivals">
<h2>新品推荐</h2>
<div class="product-list">
<!-- 这里可以用动态PHP循环显示新品 -->
<div class="product-item">
<img src="path_to_new_product_1.jpg" alt="New Product 1" />
<p>新品内衣系列</p>
</div>
<div class="product-item">
<img src="path_to_new_product_2.jpg" alt="New Product 2" />
<p>限量版睡衣</p>
</div>
</div>
</section>
<section class="brand-story">
<h2>我们的品牌故事</h2>
<p>我们是一家致力于提供时尚与舒适并存的女士内衣品牌。每一款内衣都融入了设计师的心血和工艺的精髓,让你感受到高端、精致和优雅。</p>
</section>
<?php get_footer(); ?>