import { achievements } from "@/data/facts"; import Link from "next/link"; import Image from "next/image"; import AnimatedText from "../common/AnimatedText"; export default function Achievments() { return (
img
ACHIVEMENTS


EXPLORE OUR CAPABILITIES
img
{achievements.slice(0, 2).map((elm, i) => (
img

{elm.count}

{elm.description}

))}
{achievements.slice(2, 4).map((elm, i) => (
img

{elm.count}

{elm.description}

))}
img
); }