25 lines
689 B
TypeScript
Raw Normal View History

2025-02-12 00:34:57 +07:00
import { features2 } from "@/data/features";
import React from "react";
export default function Cta3() {
return (
<>
2025-02-12 01:14:56 +07:00
<div key="cta-3" className="row mt-n10">
2025-02-12 00:34:57 +07:00
{/* Features List Item */}
{features2.map((elm, i) => (
2025-02-12 01:14:56 +07:00
<div key={i} className="col-lg-6 d-flex mt-10">
<div className="features-list-icon features-list-grad">
<i className="mi-check" />
2025-02-12 00:34:57 +07:00
</div>
2025-02-12 01:14:56 +07:00
<div>
<div className="features-list-text">{elm.text}</div>
<small className="text-sm">{elm.desc}</small>
</div>
</div>
2025-02-12 00:34:57 +07:00
))}
{/* End Features List Item */}
</div>
</>
);
}