import Button from "@/components/Button"; import Card, { CardContent } from "@/components/Card"; import { getUpsellURL } from "@/lib/utils"; import { __ } from "@wordpress/i18n"; import { CrownIcon } from "lucide-react"; const SidebarUpsellCard = () => { const upsellData = [ { title: __('JavaScript Optimization', 'wp-cloudflare-page-cache'), description: __('Delay and defer JS files for better performance', 'wp-cloudflare-page-cache'), }, { title: __('CSS Optimization', 'wp-cloudflare-page-cache'), description: __('Remove unused CSS to improve load times', 'wp-cloudflare-page-cache'), }, { title: __('Marketing Parameter Ignoring', 'wp-cloudflare-page-cache'), description: __('Improve cache hit rates significantly', 'wp-cloudflare-page-cache'), }, { title: __('Viewport-based Lazy Loading', 'wp-cloudflare-page-cache'), description: __('Smart lazy loading based on viewport detection', 'wp-cloudflare-page-cache'), }, { title: __('Priority Email Support', 'wp-cloudflare-page-cache'), description: __('Get dedicated help from our team', 'wp-cloudflare-page-cache'), }, { title: __('Support the plugin you love', 'wp-cloudflare-page-cache'), description: __('Help us continue developing amazing features', 'wp-cloudflare-page-cache'), }, ] return (

{__('Super Page Cache Pro', 'wp-cloudflare-page-cache')}

{__('Unlock advanced features', 'wp-cloudflare-page-cache')}

{upsellData.map((item, index) => (
{item.title}
{item.description}
))}

{__('30-day money-back guarantee', 'wp-cloudflare-page-cache')}

) } export default SidebarUpsellCard;