import React from 'react'; interface OGImageTemplateProps { title: string; description?: string; label?: string; image?: string; logo?: string; mode?: 'dark' | 'light' | 'image'; } export function OGImageTemplate({ title, description, label, image, logo, mode = 'dark', }: OGImageTemplateProps) { const backgroundDark = '#1a1a1a'; const primaryGreen = '#0e7a5c'; const containerStyle: React.CSSProperties = { height: '100%', width: '100%', display: 'flex', flexDirection: 'column', alignItems: 'flex-start', justifyContent: 'center', backgroundColor: mode === 'light' ? '#ffffff' : backgroundDark, padding: '80px', position: 'relative', fontFamily: 'Inter', }; return (