import Button from "@/components/Button"; import Card, { CardContent, CardFooter, CardHeader } from "@/components/Card"; import Notice from "@/components/Notice"; import { useAppStore } from "@/store/store"; import { __ } from "@wordpress/i18n"; import { Download, Shield } from "lucide-react"; const ExportCard = () => { const { asyncLocked } = useAppStore(); return (

{__('Export Settings', 'wp-cloudflare-page-cache')}

{__('Download your current configuration', 'wp-cloudflare-page-cache')}

{__('Download your current cache settings as a JSON file for backup or migration to another site.', 'wp-cloudflare-page-cache')}

{__('Secure export', 'wp-cloudflare-page-cache')}: {' '} {__('All cache settings and configurations will be included, excluding sensitive data like license keys and Cloudflare connection details.', 'wp-cloudflare-page-cache')}
); }; export default ExportCard;