import * as React from "react" import { cn } from "@/lib/utils" export interface MotionCardProps extends React.HTMLAttributes { title: string description: string highlight?: "burnt" | "terracotta" } const MotionCard = React.forwardRef( ({ className, title, description, highlight = "burnt", ...props }, ref) => { return (
{title}

{description}

) }, ) MotionCard.displayName = "MotionCard" export { MotionCard }