27 lines
722 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 (
<>
<div className="row mt-n10">
{/* Features List Item */}
{features2.map((elm, i) => (
<>
<div key={i} className="col-lg-6 d-flex mt-10">
<div className="features-list-icon features-list-grad">
<i className="mi-check" />
</div>
<div>
<div className="features-list-text">{elm.text}</div>
<small className="text-sm">{elm.desc}</small>
</div>
</div>
</>
))}
{/* End Features List Item */}
</div>
</>
);
}