"use client"; import CountUp from "react-countup"; interface CountUpComponentProps { end: number; duration: number; } export default function CountUpComponent(props: CountUpComponentProps) { return ( <> ); }