cert / src /utils /constants.js
fohake's picture
Upload 14 files
78dd0bb verified
raw
history blame contribute delete
532 Bytes
// 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'
}
};