import Button from "@/components/Button"; import Card, { CardContent } from "@/components/Card"; import { getUpsellURL } from "@/lib/utils"; import { __ } from "@wordpress/i18n"; import { CheckCircle, Crown } from "lucide-react"; const SidebarUpsellCard = () => { const features = [ __('Defer & Delay JavaScript', 'wp-cloudflare-page-cache'), __('CSS Optimization', 'wp-cloudflare-page-cache'), __('Improve cache hit rates', 'wp-cloudflare-page-cache'), __('Priority Support', 'wp-cloudflare-page-cache'), __('Support a plugin you love', 'wp-cloudflare-page-cache'), ]; return (
{__('Super Page Cache Pro', 'wp-cloudflare-page-cache')}

{__('Advanced features for maximum performance', 'wp-cloudflare-page-cache')}

{features.map((feature, index) => (
{feature}
))}
) } export default SidebarUpsellCard;