File size: 532 Bytes
78dd0bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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'
  }
};