import * as React from 'react'; interface UpgradeCardProps { title: string; description: string; buttonText?: string; buttonUrl?: string; backgroundImage?: string; } export default function UpgradeCard({ title, description, buttonText = 'Upgrade for a Faster Website', buttonUrl = 'https://thumbpress.co/pricing/', backgroundImage = 'table-shadow.png', }: UpgradeCardProps) { return (

{title}

{description}

{buttonText}
); }