31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
|
|
export default function ProductDescription() {
|
||
|
|
return (
|
||
|
|
<div className="pd-box-group bg-white mb-6 p-8 pt-6 rounded-[24px]">
|
||
|
|
<p className="group-title border-b border-[#D0D8E3] leading-[31px] font-600 text-24 mb-4 pb-4">
|
||
|
|
Đánh giá HHPC CORE i7 14700 | 32G DDR5 | NVIDIA RTX 3060 12G{" "}
|
||
|
|
</p>
|
||
|
|
<div className="js-static-container static-container leading-[135%]">
|
||
|
|
<div className="js-static-content static-content text-16 leading-[22px] text-justify">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="static-btn">
|
||
|
|
<button
|
||
|
|
type="button"
|
||
|
|
aria-label="Xem thêm"
|
||
|
|
className="js-showmore-button"
|
||
|
|
>
|
||
|
|
Xem thêm <i className="bx bx-chevron-down" />
|
||
|
|
</button>
|
||
|
|
<button
|
||
|
|
type="button"
|
||
|
|
aria-label="Thu gọn"
|
||
|
|
className="js-showless-button"
|
||
|
|
>
|
||
|
|
Thu gọn <i className="bx bx-chevron-up" />
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|