const { readFileSync } = require('fs'); /** * * @param {'bold' | 'normal'} fontWeight */ function getCss(fontWeight) { const filename = `${__dirname}/fonts/Inter-UI-${fontWeight === 'bold' ? 'Bold' : 'Regular'}.woff2`; const buffer = readFileSync(filename); const base64 = buffer.toString('base64'); return ` @font-face { font-family: 'Inter UI'; font-style: normal; font-weight: ${fontWeight}; src: url(data:font/woff2;charset=utf-8;base64,${base64}) format('woff2'); } body { background: white; background-image: radial-gradient(lightgray 5%, transparent 0); background-size: 100px 100px; height: 100vh; display: flex; text-align: center; align-items: center; justify-content: center; } .logo { width: 225px; height: 225px; } .spacer { margin: 150px; } .heading { font-family: 'Inter UI', sans-serif; font-size: 75px; font-style: normal; font-weight: ${fontWeight}; }`; } /** * * @param {string} text * @param {'bold' | 'normal'} fontWeight * @param {'now-black' | 'now-white' | 'zeit-black-triangle' | 'zeit-white-triangle'} image */ function getHtml(text, fontWeight, image) { const logo = `https://assets.zeit.co/image/upload/front/assets/design/${image}.svg`; return `
${text}
`; } module.exports = { getHtml }