104 lines
4.9 KiB
HTML
104 lines
4.9 KiB
HTML
<!doctype html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- SEO Meta Tags -->
|
|
<title>O Produto - A Arquitetura da Escala</title>
|
|
<meta name="description" content="Descubra o sistema minimalista de vendas usado pela elite do mercado para gerar lucro previsível sem dobrar a complexidade." />
|
|
|
|
<!-- Open Graph / O que aparece no WhatsApp e Redes Sociais -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="O Produto - A Arquitetura da Escala" />
|
|
<meta property="og:description" content="Descubra o sistema minimalista de vendas usado pela elite do mercado para gerar lucro previsível." />
|
|
<!-- Coloque aqui a URL de uma imagem sua para aparecer no WhatsApp (exemplo: 1200x630px) -->
|
|
<meta property="og:image" content="https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=1200&auto=format&fit=crop" />
|
|
|
|
<!-- ============================================== -->
|
|
<!-- 1. GOOGLE TAG MANAGER (GTM) -->
|
|
<!-- ============================================== -->
|
|
<!-- Copie esse código e coloque sua tag onde tem GTM-XXXXXXX 👇 -->
|
|
<!--
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
})(window,document,'script','dataLayer','GTM-XXXXXXX');</script>
|
|
-->
|
|
|
|
<!-- ============================================== -->
|
|
<!-- 2. FACEBOOK PIXEL -->
|
|
<!-- ============================================== -->
|
|
<!-- Copie esse código e troque XXXXXXXXXX pelo ID do seu pixel 👇 -->
|
|
<!--
|
|
<script>
|
|
!function(f,b,e,v,n,t,s)
|
|
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
|
|
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
|
|
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
|
|
n.queue=[];t=b.createElement(e);t.async=!0;
|
|
t.src=v;s=b.getElementsByTagName(e)[0];
|
|
s.parentNode.insertBefore(t,s)}(window, document,'script',
|
|
'https://connect.facebook.net/en_US/fbevents.js');
|
|
fbq('init', 'XXXXXXXXXX');
|
|
fbq('track', 'PageView');
|
|
</script>
|
|
<noscript><img height="1" width="1" style="display:none"
|
|
src="https://www.facebook.com/tr?id=XXXXXXXXXX&ev=PageView&noscript=1"
|
|
/></noscript>
|
|
-->
|
|
|
|
</head>
|
|
<body>
|
|
<!-- ============================================== -->
|
|
<!-- GTM (NOSCRIPT) PARA O BODY -->
|
|
<!-- ============================================== -->
|
|
<!-- Substitua o GTM-XXXXXXX do GTM abaixo também 👇 -->
|
|
<!--
|
|
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-XXXXXXX"
|
|
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
-->
|
|
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
|
|
<!-- 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>
|
|
</body>
|
|
</html>
|
|
|