import React from 'react'; // import { motion } from 'framer-motion'; import * as motion from "motion/react-client"; import { Card } from '@nextui-org/react'; interface StatsCardProps { title: string; value: string; } export const StatsCard: React.FC = ({ title, value }) => { return (

{value}

{title}

); };