63 lines
3.4 KiB
TypeScript
63 lines
3.4 KiB
TypeScript
export default function Feature() {
|
|
return (
|
|
<>
|
|
<div className="showroom-features py-4x">
|
|
<div className="container">
|
|
<h3 className="text-28 font-weight-600 text-center pb-3x">
|
|
CÁC TIỆN ÍCH TẠI SHOWROOM
|
|
</h3>
|
|
<ul className="grid grid--4-cols grid--gap-1 font-weight-bold color-secondary">
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-motobike mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Giữ xe miễn phí
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-wifi mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Wifi miễn phí
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-drink mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Đồ uống miễn phí
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-laptop mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Xem và trải nghiệm sản phẩm miễn phí
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-headphone mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Được tư vấn chuyên sâu về sản phẩm dịch vụ
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-card mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Có chính sách bán hàng trả góp
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-oto mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Giao hàng tận nhà
|
|
</p>
|
|
</li>
|
|
<li className="d-flex flex-column align-items-center">
|
|
<i className="static-icons static-icon-shield mt-3" />
|
|
<p className="text-20 text-center mb-3 mt-2 px-4">
|
|
Sản phẩm chính hãng 100%
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
} |