import { VStack, HStack, type StackProps, Text, Divider } from "@chakra-ui/react"; import Link, { type LinkProps } from "next/link"; const StatsCard = ({ title, href, children, ...rest }: { title: string; href: string } & StackProps & LinkProps) => { return ( {title} View all {children} ); }; export default StatsCard;