import PurchaseButton from "@/components/purchase-button"; import { formatPrice } from "@/lib/format"; type GradeCardProps = { grade: { id: string; name: string; price: number; description: string; }; }; export default function GradeCard({ grade }: GradeCardProps) { return (

{grade.name}

{formatPrice(grade.price)}

{grade.description}

Instant access
); }