2026-05-13 22:21:40 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<!-- INJECT_SEO -->
|
|
|
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><rect width=%22100%22 height=%22100%22 rx=%2220%22 fill=%22#1c1917%22/><text y=%2250%%22 x=%2250%%22 text-anchor=%22middle%22 dominant-baseline=%22central%22 font-family=%22Playfair Display, serif%22 font-style=%22italic%22 font-size=%2255%22 fill=%22#FDFBF7%22>H</text></svg>">
|
|
|
|
|
<title>Helena Costa | Front-end Engineer</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="root"></div>
|
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
2026-05-15 13:54:09 +00:00
|
|
|
|
|
|
|
|
<!-- Theme Auto-Updater injected by autoblogia -->
|
|
|
|
|
<script>
|
|
|
|
|
window.addEventListener('message', (event) => {
|
|
|
|
|
if (event.data && event.data.type === 'UPDATE_APPEARANCE') {
|
|
|
|
|
const { primaryColor, backgroundColor, fontFamily } = event.data.settings;
|
|
|
|
|
const root = document.documentElement;
|
|
|
|
|
const style = root.style;
|
|
|
|
|
|
|
|
|
|
if (primaryColor) {
|
|
|
|
|
style.setProperty('--primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-tech-primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-seo-primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-finance-primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-recipe-primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-health-primary', primaryColor);
|
|
|
|
|
style.setProperty('--color-corporate-primary', primaryColor);
|
|
|
|
|
}
|
|
|
|
|
if (backgroundColor) {
|
|
|
|
|
style.setProperty('--background', backgroundColor);
|
|
|
|
|
style.setProperty('--color-bg', backgroundColor);
|
|
|
|
|
style.setProperty('--color-tech-surface', backgroundColor);
|
|
|
|
|
style.setProperty('--color-seo-surface', backgroundColor);
|
|
|
|
|
style.backgroundColor = backgroundColor;
|
|
|
|
|
}
|
|
|
|
|
if (fontFamily) {
|
|
|
|
|
const fontString = '"' + fontFamily + '", sans-serif';
|
|
|
|
|
style.setProperty('--font-family', fontString);
|
|
|
|
|
style.setProperty('--font-sans', fontString);
|
|
|
|
|
style.fontFamily = fontString;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// Ping parent window that we are ready
|
|
|
|
|
window.parent.postMessage({ type: 'IFRAME_READY' }, '*');
|
|
|
|
|
</script>
|
2026-05-13 22:21:40 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|