// Certificate template URL | |
export const CERTIFICATE_TEMPLATE_URL = 'https://sanaatan.io/cert.png'; | |
// Text positioning constants for the certificate | |
export const TEXT_POSITIONS = { | |
name: { | |
top: '450px', // Adjusted to align with the blank line | |
left: '50%', | |
transform: 'translateX(-50%)', | |
fontSize: '42px', | |
fontWeight: '600' | |
}, | |
date: { | |
top: '650px', // Adjusted for position above signatures | |
left: '50%', | |
transform: 'translateX(-50%)', | |
fontSize: '24px', | |
fontStyle: 'normal' | |
} | |
}; |