import { facts } from "@/data/facts"; import React from "react"; import Counter from "./Counter"; export default function Cta() { return (

Join Our Community

We are trusted by over 5000+ clients. Join them now and grow your business.

{/* /.row */}
{/* /column */}
{facts.slice(0, 3).map((elm, i) => (

{elm.description}

))}
{/*/.row */}
{/* /column */}
{/* /.row */}
{/* /.container */}
); }