import { buttonRow, closingRow, headingRow, lead1Row, wrap } from '../shared/blocks.mjs' // Translations import en from '../../../../public/locales/en/loginlink.json' assert { type: 'json' } import de from '../../../../public/locales/de/loginlink.json' assert { type: 'json' } import es from '../../../../public/locales/es/loginlink.json' assert { type: 'json' } import fr from '../../../../public/locales/fr/loginlink.json' assert { type: 'json' } import nl from '../../../../public/locales/nl/loginlink.json' assert { type: 'json' } export const loginLink = { html: wrap.html(` ${headingRow}

{{ prelead }}

{{ lead }}:

${buttonRow.text} ${closingRow.text} `), text: wrap.text(`${headingRow.text} {{ prelead }} {{lead }} ${buttonRow.text} ${closingRow.text} `), } export const translations = { en, de, es, fr, nl }