This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function renderDownloadPage(data) { | |
const html = ` | |
<div style="max-width:500px;margin:20px auto;padding:20px;border:1px solid #ccc;border-radius:10px;font-family:sans-serif;"> | |
<center><h2>Download ${data.title}</h2></center> | |
<center><img src="${data.image}" style="max-width:100%;border-radius:8px;margin:10px 0;" /></center> | |
<center> | |
<a href="${data.link}" style="background:#007bff;color:white;padding:10px 20px;border-radius:5px;text-decoration:none;">Download Now</a> | |
</center> | |
</div> | |
`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function renderDownloadPage(data) { | |
const html = ` | |
<div style="max-width:500px;margin:20px auto;padding:20px;border:1px solid #ccc;border-radius:10px;font-family:sans-serif;"> | |
<center><h2>Download ${data.title}</h2></center> | |
<center><img src="${data.image}" style="max-width:100%;border-radius:8px;margin:10px 0;" /></center> | |
<center> | |
<a href="${data.link}" style="background:#007bff;color:white;padding:10px 20px;border-radius:5px;text-decoration:none;">Download Now</a> | |
</center> | |
</div> | |
`; |