// SVG logo as data URI for email compatibility // In production, you should host this logo and use the hosted URL // SVG with fill color set to match theme (green #105D38) const logoSvg = ``; // Encode SVG for data URI const encodedSvg = encodeURIComponent(logoSvg); export const logoDataUri = `data:image/svg+xml;charset=utf-8,${encodedSvg}`; // For production, replace with your hosted logo URL: // export const logoUrl = 'https://yourdomain.com/logo.svg';