Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d1065a6d67 | |||
| fe33914ff3 | |||
| b59f2ee505 | |||
| fae851c17e | |||
| a7dc78739e |
@@ -1,55 +1,43 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Montserrat } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Poppins } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
const montserrat = Montserrat({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-montserrat", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Aula Ao Vivo: Negócio Global com Google Ads | Gerar em Dólar", description: "Descubra como construir um negócio global simples com Google Ads promovendo Nutra. Aula ao vivo com mentor que gera sete dígitos. Vagas limitadas.", keywords: "Google Ads, Nutra global, negócio online, gerar em dólar, aula ao vivo, marketing digital, empreendedorismo", metadataBase: new URL("https://aula-global-nutra.com"),
|
title: "Aula Ao Vivo: Negócio Global com Google Ads | Gerar em Dólar", description: "Descubra como construir um negócio global simples com Google Ads promovendo Nutra. Aula ao vivo com mentor que gera sete dígitos. Vagas limitadas.", keywords: "Google Ads, Nutra global, negócio online, gerar em dólar, aula ao vivo, marketing digital, empreendedorismo", metadataBase: new URL("https://aula-global-nutra.com"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://aula-global-nutra.com"},
|
canonical: "https://aula-global-nutra.com"
|
||||||
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Aula Ao Vivo: Construa um Negócio Global que Gera Receita em Dólar", description: "Participe de uma aula ao vivo onde você aprenderá um modelo simples de negócio com Google Ads e Nutra. Mentor com sete dígitos de faturamento. Vagas limitadas.", url: "https://aula-global-nutra.com", siteName: "Aula Global Nutra", type: "website", images: [
|
title: "Aula Ao Vivo: Construa um Negócio Global que Gera Receita em Dólar", description: "Participe de uma aula ao vivo onde você aprenderá um modelo simples de negócio com Google Ads e Nutra. Mentor com sete dígitos de faturamento. Vagas limitadas.", url: "https://aula-global-nutra.com", siteName: "Aula Global Nutra", type: "website", images: [
|
||||||
{
|
{
|
||||||
url: "http://img.b2bpic.net/free-photo/young-sportswoman-with-headset-using-computer-living-room_637285-5357.jpg", alt: "Aula ao vivo sobre negócio global com Google Ads"},
|
url: "http://img.b2bpic.net/free-photo/young-sportswoman-with-headset-using-computer-living-room_637285-5357.jpg", alt: "Aula ao vivo sobre negócio global com Google Ads"
|
||||||
],
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Negócio Global: Gere em Dólar com Google Ads", description: "Aula ao vivo revelando o modelo simples que transforma empreendedores em donos de negócios lucrativos internacionais.", images: ["http://img.b2bpic.net/free-photo/young-sportswoman-with-headset-using-computer-living-room_637285-5357.jpg"],
|
card: "summary_large_image", title: "Negócio Global: Gere em Dólar com Google Ads", description: "Aula ao vivo revelando o modelo simples que transforma empreendedores em donos de negócios lucrativos internacionais.", images: ["http://img.b2bpic.net/free-photo/young-sportswoman-with-headset-using-computer-living-room_637285-5357.jpg"]
|
||||||
},
|
},
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${montserrat.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
166
src/app/page.tsx
166
src/app/page.tsx
@@ -34,7 +34,8 @@ export default function LandingPage() {
|
|||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Garantir Vaga", href: "#pricing"}}
|
text: "Garantir Vaga", href: "#pricing"
|
||||||
|
}}
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -48,24 +49,26 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Quero Participar da Aula Ao Vivo", href: "#pricing"},
|
text: "Quero Participar da Aula Ao Vivo", href: "#pricing"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient"}}
|
variant: "sparkles-gradient"
|
||||||
|
}}
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{
|
||||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-sportswoman-with-headset-using-computer-living-room_637285-5357.jpg?_wi=1", imageAlt: "Webinar ao vivo sobre negócio global"},
|
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-planet-earth_1232-144.jpg?_wi=1", imageAlt: "Oportunidade global de negócios"},
|
||||||
{
|
{
|
||||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg?_wi=1", imageAlt: "Dashboard do Google Ads com estratégia"},
|
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-jar-with-spices_23-2148685770.jpg?_wi=1", imageAlt: "Produtos Nutra internacionais"},
|
||||||
{
|
{
|
||||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-planet-earth_1232-144.jpg?_wi=1", imageAlt: "Oportunidade global de negócios"},
|
id: "3", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=1", imageAlt: "Gráfico de crescimento e sucesso"},
|
||||||
{
|
{
|
||||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-jar-with-spices_23-2148685770.jpg?_wi=1", imageAlt: "Produtos Nutra internacionais"},
|
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-planet-earth_1232-144.jpg?_wi=2", imageAlt: "Oportunidade global de negócios"},
|
||||||
{
|
{
|
||||||
id: "5", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=1", imageAlt: "Gráfico de crescimento e sucesso"},
|
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-jar-with-spices_23-2148685770.jpg?_wi=2", imageAlt: "Produtos Nutra internacionais"},
|
||||||
{
|
{
|
||||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/elementary-school-teacher-teaching-student-online-coronavirus-epidemic_637285-8898.jpg?_wi=1", imageAlt: "Sessão ao vivo com mentor"},
|
id: "6", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=2", imageAlt: "Gráfico de crescimento e sucesso"}
|
||||||
]}
|
]}
|
||||||
autoPlay={true}
|
autoPlay={true}
|
||||||
autoPlayInterval={5000}
|
autoPlayInterval={5000}
|
||||||
@@ -83,11 +86,12 @@ export default function LandingPage() {
|
|||||||
title="De Vendedor de Rua a Sete Dígitos: A Jornada que Revelou o Modelo Simples que Transforma Vidas"
|
title="De Vendedor de Rua a Sete Dígitos: A Jornada que Revelou o Modelo Simples que Transforma Vidas"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Saber Mais Sobre o Mentor", href: "#"},
|
text: "Saber Mais Sobre o Mentor", href: "#"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
containerClassName="max-w-3xl mx-auto py-16 md:py-24 px-4 bg-gradient-to-b from-transparent via-[#b90941]/5 to-transparent"
|
containerClassName="max-w-3xl mx-auto py-16 md:py-24 px-4 bg-gradient-to-b from-transparent via-[#d4a574]/5 to-transparent"
|
||||||
titleClassName="text-3xl md:text-5xl font-bold leading-tight"
|
titleClassName="text-3xl md:text-5xl font-bold leading-tight"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -98,9 +102,9 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
id: "01", title: "Mercados Saturados", description: "Competição excessiva no mercado brasileiro limita ganhos reais", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=2", imageAlt: "Mercado saturado"},
|
id: "01", title: "Mercados Saturados", description: "Competição excessiva no mercado brasileiro limita ganhos reais", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=2", imageAlt: "Mercado saturado"},
|
||||||
{
|
{
|
||||||
id: "02", title: "Estratégias Complexas", description: "Modelos que exigem conhecimento técnico avançado e equipes grandes", imageSrc: "http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286160.jpg?_wi=1", imageAlt: "Equipes complexas"},
|
id: "02", title: "Estratégias Complexas", description: "Modelos que exigem conhecimento técnico avançado e equipes grandes", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=1", imageAlt: "Equipes complexas"},
|
||||||
{
|
{
|
||||||
id: "03", title: "Educação Teórica", description: "Cursos que ensinam teoria mas não entregam execução prática", imageSrc: "http://img.b2bpic.net/free-photo/elementary-school-teacher-teaching-student-online-coronavirus-epidemic_637285-8898.jpg?_wi=2", imageAlt: "Aula teórica"},
|
id: "03", title: "Educação Teórica", description: "Cursos que ensinam teoria mas não entregam execução prática", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=2", imageAlt: "Aula teórica"},
|
||||||
{
|
{
|
||||||
id: "04", title: "Margens Limitadas", description: "Negócios apenas no Brasil com margens pequenas e altamente competitivos", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-planet-earth_1232-144.jpg?_wi=2", imageAlt: "Mercado limitado"},
|
id: "04", title: "Margens Limitadas", description: "Negócios apenas no Brasil com margens pequenas e altamente competitivos", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-planet-earth_1232-144.jpg?_wi=2", imageAlt: "Mercado limitado"},
|
||||||
]}
|
]}
|
||||||
@@ -125,11 +129,12 @@ export default function LandingPage() {
|
|||||||
title="A Oportunidade Global: Um Mercado de Bilhões Esperando Pela Estratégia Certa"
|
title="A Oportunidade Global: Um Mercado de Bilhões Esperando Pela Estratégia Certa"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Descubra Como Capturar Essa Oportunidade", href: "#pricing"},
|
text: "Descubra Como Capturar Essa Oportunidade", href: "#pricing"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
containerClassName="max-w-4xl mx-auto py-16 md:py-24 px-4 bg-gradient-to-b from-[#b90941]/5 to-transparent"
|
containerClassName="max-w-4xl mx-auto py-16 md:py-24 px-4 bg-gradient-to-b from-[#d4a574]/5 to-transparent"
|
||||||
titleClassName="text-3xl md:text-5xl font-bold leading-tight"
|
titleClassName="text-3xl md:text-5xl font-bold leading-tight"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -140,15 +145,15 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
id: "01", title: "Como Funciona o Modelo Nutra Global", description: "Estrutura completa e simples que você pode começar hoje mesmo", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-jar-with-spices_23-2148685770.jpg?_wi=2", imageAlt: "Modelo Nutra"},
|
id: "01", title: "Como Funciona o Modelo Nutra Global", description: "Estrutura completa e simples que você pode começar hoje mesmo", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-jar-with-spices_23-2148685770.jpg?_wi=2", imageAlt: "Modelo Nutra"},
|
||||||
{
|
{
|
||||||
id: "02", title: "Montar um Funil que Converte", description: "Estratégia passo a passo: Ads → Landing Page → Checkout", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg?_wi=2", imageAlt: "Funil de conversão"},
|
id: "02", title: "Montar um Funil que Converte", description: "Estratégia passo a passo: Ads → Landing Page → Checkout", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=2", imageAlt: "Funil de conversão"},
|
||||||
{
|
{
|
||||||
id: "03", title: "Usar Google Ads para Capturar Compradores", description: "Como encontrar e converter pessoas com alta intenção de compra", imageSrc: "http://img.b2bpic.net/free-photo/elementary-school-teacher-teaching-student-online-coronavirus-epidemic_637285-8898.jpg?_wi=3", imageAlt: "Google Ads estratégia"},
|
id: "03", title: "Usar Google Ads para Capturar Compradores", description: "Como encontrar e converter pessoas com alta intenção de compra", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=3", imageAlt: "Google Ads estratégia"},
|
||||||
{
|
{
|
||||||
id: "04", title: "Começar Sem Saber Inglês", description: "Estratégia completa acessível para quem fala apenas português", imageSrc: "http://img.b2bpic.net/free-photo/young-sportswoman-with-headset-using-computer-living-room_637285-5357.jpg?_wi=2", imageAlt: "Sem barreiras de idioma"},
|
id: "04", title: "Começar Sem Saber Inglês", description: "Estratégia completa acessível para quem fala apenas português", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-planet-earth_1232-144.jpg?_wi=1", imageAlt: "Sem barreiras de idioma"},
|
||||||
{
|
{
|
||||||
id: "05", title: "Operar com Estrutura Enxuta", description: "Negócio escalável com mínimo de complexidade operacional", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=3", imageAlt: "Estrutura simples"},
|
id: "05", title: "Operar com Estrutura Enxuta", description: "Negócio escalável com mínimo de complexidade operacional", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=3", imageAlt: "Estrutura simples"},
|
||||||
{
|
{
|
||||||
id: "06", title: "Evitar Erros Custosos em Anúncios", description: "Os 7 erros que iniciantes cometem e como evitá-los", imageSrc: "http://img.b2bpic.net/free-photo/colleagues-working-together-project_23-2149286160.jpg?_wi=2", imageAlt: "Evitar erros"},
|
id: "06", title: "Evitar Erros Custosos em Anúncios", description: "Os 7 erros que iniciantes cometem e como evitá-los", imageSrc: "http://img.b2bpic.net/free-vector/business-success-growth-arrow-with-upward-arrow_1017-25459.jpg?_wi=2", imageAlt: "Evitar erros"},
|
||||||
]}
|
]}
|
||||||
title="O Que Você Vai Aprender na Aula Ao Vivo"
|
title="O Que Você Vai Aprender na Aula Ao Vivo"
|
||||||
description="Explicação completa e prática do modelo que gera receita em dólar com Google Ads."
|
description="Explicação completa e prática do modelo que gera receita em dólar com Google Ads."
|
||||||
@@ -177,62 +182,92 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardThree
|
<div className="relative">
|
||||||
plans={[
|
<style>{`
|
||||||
{
|
@keyframes pulse-glow {
|
||||||
id: "1", price: "R$47", name: "Ingresso da Aula Ao Vivo", buttons: [
|
0%, 100% {
|
||||||
{
|
box-shadow: 0 0 20px rgba(212, 165, 116, 0.3), 0 0 40px rgba(212, 165, 116, 0.1);
|
||||||
text: "Garantir Minha Vaga", href: "#"},
|
}
|
||||||
{
|
50% {
|
||||||
text: "Falar com Suporte", href: "https://wa.me/5585987654321"},
|
box-shadow: 0 0 40px rgba(212, 165, 116, 0.6), 0 0 80px rgba(212, 165, 116, 0.2);
|
||||||
],
|
}
|
||||||
features: [
|
}
|
||||||
"Acesso à aula ao vivo completa", "Explicação detalhada do modelo de negócio", "Estratégia para começar no mercado global", "Acesso ao grupo exclusivo de participantes", "Suporte pós-aula por 7 dias", "Vagas limitadas a 100 participantes"],
|
.pricing-card-vip {
|
||||||
},
|
animation: pulse-glow 2s ease-in-out infinite;
|
||||||
{
|
}
|
||||||
id: "2", badge: "Mais Popular", badgeIcon: Sparkles,
|
`}</style>
|
||||||
price: "R$97", name: "Ingresso + Grupo VIP", buttons: [
|
<PricingCardThree
|
||||||
{
|
plans={[
|
||||||
text: "Garantir Minha Vaga VIP", href: "#"},
|
{
|
||||||
{
|
id: "1", price: "R$47", name: "Ingresso da Aula Ao Vivo", buttons: [
|
||||||
text: "Falar com Suporte", href: "https://wa.me/5585987654321"},
|
{
|
||||||
],
|
text: "Garantir Minha Vaga", href: "#"
|
||||||
features: [
|
},
|
||||||
"Acesso à aula ao vivo completa", "Explicação detalhada do modelo de negócio", "Estratégia passo a passo implementável", "Acesso ao grupo exclusivo VIP de participantes", "Suporte pós-aula por 30 dias (vs 7 dias)", "Masterclass de acompanhamento 14 dias após aula", "Acesso a templates exclusivos de funil", "Consultoria individual 1:1 com mentor (30 min)", "Vagas limitadas a 50 participantes"],
|
{
|
||||||
},
|
text: "Falar com Suporte", href: "https://wa.me/5585987654321"
|
||||||
]}
|
},
|
||||||
title="Ingresso para a Aula Ao Vivo"
|
],
|
||||||
description="Escolha seu nível de acesso e comece sua jornada rumo ao negócio global hoje mesmo."
|
features: [
|
||||||
tag="Oferta por Tempo Limitado"
|
"Acesso à aula ao vivo completa", "Explicação detalhada do modelo de negócio", "Estratégia para começar no mercado global", "Acesso ao grupo exclusivo de participantes", "Suporte pós-aula por 7 dias", "Vagas limitadas a 100 participantes"
|
||||||
tagIcon={Clock}
|
],
|
||||||
tagAnimation="slide-up"
|
},
|
||||||
textboxLayout="default"
|
{
|
||||||
animationType="slide-up"
|
id: "2", badge: "Mais Popular", badgeIcon: Sparkles,
|
||||||
useInvertedBackground={false}
|
price: "R$97", name: "Ingresso + Grupo VIP", buttons: [
|
||||||
carouselMode="buttons"
|
{
|
||||||
containerClassName="py-16 md:py-24 bg-gradient-to-b from-[#b90941]/10 to-[#b90941]/5 max-w-5xl mx-auto px-4"
|
text: "Garantir Minha Vaga VIP", href: "#"
|
||||||
/>
|
},
|
||||||
|
{
|
||||||
|
text: "Falar com Suporte", href: "https://wa.me/5585987654321"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
features: [
|
||||||
|
"Acesso à aula ao vivo completa", "Explicação detalhada do modelo de negócio", "Estratégia passo a passo implementável", "Acesso ao grupo exclusivo VIP de participantes", "Suporte pós-aula por 30 dias (vs 7 dias)", "Masterclass de acompanhamento 14 dias após aula", "Acesso a templates exclusivos de funil", "Consultoria individual 1:1 com mentor (30 min)", "Vagas limitadas a 50 participantes"
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
title="Ingresso para a Aula Ao Vivo"
|
||||||
|
description="Escolha seu nível de acesso e comece sua jornada rumo ao negócio global hoje mesmo."
|
||||||
|
tag="Oferta por Tempo Limitado"
|
||||||
|
tagIcon={Clock}
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
carouselMode="buttons"
|
||||||
|
containerClassName="py-16 md:py-24 bg-gradient-to-b from-[#d4a574]/15 to-[#d4a574]/8 max-w-5xl mx-auto px-4"
|
||||||
|
cardClassName="pricing-card-vip"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqDouble
|
<FaqDouble
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Preciso saber Google Ads?", content: "Não! Você aprenderá tudo na aula. Mesmo sem experiência anterior, nossa estratégia é desenhada para iniciantes. Você vai dominar os fundamentos de forma prática."},
|
id: "1", title: "Preciso saber Google Ads?", content: "Não! Você aprenderá tudo na aula. Mesmo sem experiência anterior, nossa estratégia é desenhada para iniciantes. Você vai dominar os fundamentos de forma prática."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Preciso falar inglês?", content: "Absolutamente não. A aula é 100% em português. A estratégia foi adaptada especificamente para empreendedores brasileiros que não falam inglês."},
|
id: "2", title: "Preciso falar inglês?", content: "Absolutamente não. A aula é 100% em português. A estratégia foi adaptada especificamente para empreendedores brasileiros que não falam inglês."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Preciso criar um produto?", content: "Não! Este é um dos maiores diferenciais do modelo. Você promove ofertas de Nutra já existentes e consolidadas no mercado global. Sem produto, sem complicação."},
|
id: "3", title: "Preciso criar um produto?", content: "Não! Este é um dos maiores diferenciais do modelo. Você promove ofertas de Nutra já existentes e consolidadas no mercado global. Sem produto, sem complicação."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Quanto dinheiro preciso para começar?", content: "O investimento mínimo é entre R$500 a R$2.000 para começar com testes. Nesta aula, você aprenderá como estruturar seu funil com qualquer orçamento."},
|
id: "4", title: "Quanto dinheiro preciso para começar?", content: "O investimento mínimo é entre R$500 a R$2.000 para começar com testes. Nesta aula, você aprenderá como estruturar seu funil com qualquer orçamento."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", title: "É possível ganhar realmente em dólar?", content: "Sim! Você receberá comissões diretamente das empresas de Nutra internacionais, que pagam em dólar (USD). O mentor revelará todas as plataformas e os processos de pagamento."},
|
id: "5", title: "É possível ganhar realmente em dólar?", content: "Sim! Você receberá comissões diretamente das empresas de Nutra internacionais, que pagam em dólar (USD). O mentor revelará todas as plataformas e os processos de pagamento."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", title: "Qual é o tempo mínimo para ver resultados?", content: "Com a estratégia correta, você pode começar a gerar tráfego pago em 48 horas. Resultados consistentes costumam aparecer em 30-60 dias se você implementar corretamente."},
|
id: "6", title: "Qual é o tempo mínimo para ver resultados?", content: "Com a estratégia correta, você pode começar a gerar tráfego pago em 48 horas. Resultados consistentes costumam aparecer em 30-60 dias se você implementar corretamente."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "7", title: "Posso fazer isso em paralelo com meu trabalho atual?", content: "Sim! O modelo é extremamente enxuto. Você pode gerenciar tudo em 2-3 horas por dia. Muitos dos alunos do mentor começaram assim."},
|
id: "7", title: "Posso fazer isso em paralelo com meu trabalho atual?", content: "Sim! O modelo é extremamente enxuto. Você pode gerenciar tudo em 2-3 horas por dia. Muitos dos alunos do mentor começaram assim."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "8", title: "O que incluído no ingresso da aula?", content: "Você recebe acesso à aula ao vivo completa, explicação detalhada do modelo, estratégia passo a passo, acesso ao grupo exclusivo de participantes e suporte de 7 dias pós-aula."},
|
id: "8", title: "O que incluído no ingresso da aula?", content: "Você recebe acesso à aula ao vivo completa, explicação detalhada do modelo, estratégia passo a passo, acesso ao grupo exclusivo de participantes e suporte de 7 dias pós-aula."
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
title="Perguntas Frequentes"
|
title="Perguntas Frequentes"
|
||||||
description="Respostas para as dúvidas mais comuns sobre o modelo e a aula."
|
description="Respostas para as dúvidas mais comuns sobre o modelo e a aula."
|
||||||
@@ -254,11 +289,12 @@ export default function LandingPage() {
|
|||||||
title="Empreendedor Sério: Esta é Sua Oportunidade de Entrar em um Mercado de Bilhões com Capital Mínimo"
|
title="Empreendedor Sério: Esta é Sua Oportunidade de Entrar em um Mercado de Bilhões com Capital Mínimo"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Garantir Minha Vaga Agora", href: "#pricing"},
|
text: "Garantir Minha Vaga Agora", href: "#pricing"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
containerClassName="max-w-4xl mx-auto py-16 md:py-24 px-4 bg-gradient-to-b from-[#b82b40]/10 to-[#b82b40]/5"
|
containerClassName="max-w-4xl mx-auto py-16 md:py-24 px-4 bg-gradient-to-b from-[#d4a574]/10 to-[#d4a574]/5"
|
||||||
titleClassName="text-3xl md:text-5xl font-bold leading-tight"
|
titleClassName="text-3xl md:text-5xl font-bold leading-tight"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -289,7 +325,7 @@ export default function LandingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
containerClassName="py-16 md:py-20 border-t border-[#b90941]/20 max-w-6xl mx-auto px-4"
|
containerClassName="py-16 md:py-20 border-t border-[#d4a574]/20 max-w-6xl mx-auto px-4"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-poppins), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-poppins), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #0a0a0a;
|
||||||
--card: #ffffff;
|
--card: #1a1a1a;
|
||||||
--foreground: #250c0d;
|
--foreground: #f5f5f5;
|
||||||
--primary-cta: #b82b40;
|
--primary-cta: #d4a574;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #250c0d;
|
--secondary-cta-text: #250c0d;
|
||||||
--accent: #b90941;
|
--accent: #d4a574;
|
||||||
--background-accent: #e8a8b6;
|
--background-accent: #2a2a2a;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user