import React from 'react'; import { Paper, Grid, Group, Stack, Button, Anchor, Text, rem, } from '@mantine/core'; // Inline SVG from your design (you can replace with any icon) function TrustDockIcon(props: React.SVGProps) { return ( ); } type Props = { onCreateAccount?: () => void; onConnectAccount?: () => void; }; export default function UpgradeCard({ onCreateAccount, onConnectAccount, }: Props) { return ( Upgrade to unlock custom CSS and other advanced features To upgrade, create a new Cookiex account, or connect to an existing account and access premium features! After connecting, you can manage all your settings from the web app. Already have an account?{' '} Connect your existing account ); }