mirror of
https://github.com/lucasrcsantana/story-generator.git
synced 2025-12-16 21:37:51 +00:00
Compare commits
2 Commits
be340d132e
...
18bc42d280
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18bc42d280 | ||
|
|
14c71062f1 |
@ -109,6 +109,7 @@ export function HomePage() {
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{/*
|
||||
<Button
|
||||
onClick={handleSchoolRegister}
|
||||
variant="primary"
|
||||
@ -121,6 +122,7 @@ export function HomePage() {
|
||||
>
|
||||
Cadastrar Escola
|
||||
</Button>
|
||||
*/}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -144,7 +146,7 @@ export function HomePage() {
|
||||
</p>
|
||||
<div className="flex flex-col sm:flex-row gap-4">
|
||||
<Button
|
||||
onClick={handleSchoolRegister}
|
||||
onClick={() => window.location.href = 'https://typebot-public.inventivos.co/leiturama-leads'}
|
||||
variant="primary"
|
||||
size="lg"
|
||||
className="gap-2"
|
||||
@ -152,11 +154,11 @@ export function HomePage() {
|
||||
trackingProperties={{
|
||||
category: EVENT_CATEGORIES.HERO,
|
||||
action: 'click',
|
||||
label: 'start_free',
|
||||
label: 'contact_us',
|
||||
position: 'hero_section'
|
||||
}}
|
||||
>
|
||||
Começar Gratuitamente
|
||||
Entre em contato
|
||||
<ArrowRight className="w-5 h-5" />
|
||||
</Button>
|
||||
<Button
|
||||
@ -275,29 +277,25 @@ export function HomePage() {
|
||||
</div>
|
||||
|
||||
<div className="grid md:grid-cols-4 gap-8">
|
||||
<StatCard
|
||||
<FeatureCard
|
||||
icon={Star}
|
||||
title="Fluência de Leitura"
|
||||
value="95%"
|
||||
description="Melhoria na fluência de leitura dos alunos"
|
||||
description="Nossa tecnologia avalia a leitura dos alunos e gera relatórios para melhorar a comunicação com confiança."
|
||||
/>
|
||||
<StatCard
|
||||
<FeatureCard
|
||||
icon={Sparkles}
|
||||
title="Engajamento"
|
||||
value="87%"
|
||||
description="Aumento no engajamento com a leitura"
|
||||
title="Mais tempo"
|
||||
description="Queremos economizar o tempo dos professores, permitindo mais foco nos alunos e melhorando os resultados."
|
||||
/>
|
||||
<StatCard
|
||||
<FeatureCard
|
||||
icon={CheckCircle}
|
||||
title="Satisfação"
|
||||
value="92%"
|
||||
description="Satisfação dos pais com o progresso"
|
||||
title="Alunos engajados"
|
||||
description="Histórias personalizadas com IA e gamificação tornam a aprendizagem mais divertida."
|
||||
/>
|
||||
<StatCard
|
||||
<FeatureCard
|
||||
icon={BookOpen}
|
||||
title="Leitura"
|
||||
value="3x"
|
||||
description="Mais histórias lidas por aluno"
|
||||
title="Bilíngue"
|
||||
description="Melhore leitura e compreensão em português, inglês e espanhol em uma única plataforma."
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -409,10 +407,12 @@ export function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Pricing Section */}
|
||||
{/* Pricing Section
|
||||
<div className="mt-24">
|
||||
<PlanForSchools />
|
||||
</div>
|
||||
*/}
|
||||
|
||||
|
||||
{/* FAQ Section */}
|
||||
<div className="mt-24">
|
||||
@ -458,10 +458,10 @@ export function HomePage() {
|
||||
Junte-se a mais de 1000 escolas que já estão revolucionando a educação
|
||||
</p>
|
||||
<button
|
||||
onClick={() => navigate('/register')}
|
||||
onClick={() => window.location.href = 'https://typebot-public.inventivos.co/leiturama-leads'}
|
||||
className="bg-white text-purple-600 px-8 py-3 rounded-lg font-semibold hover:bg-purple-50 transition"
|
||||
>
|
||||
Começar Gratuitamente
|
||||
Entre em contato
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -23,7 +23,7 @@ const defaultPlans: PlanProps[] = [
|
||||
{
|
||||
title: "Escola Iniciante",
|
||||
description: "Para escolas começando a transformação",
|
||||
price: "997",
|
||||
price: "1.997",
|
||||
features: [
|
||||
"Até 100 alunos",
|
||||
"Método fônico estruturado",
|
||||
@ -34,7 +34,7 @@ const defaultPlans: PlanProps[] = [
|
||||
{
|
||||
title: "Escola Transformadora",
|
||||
description: "Para escolas comprometidas",
|
||||
price: "1.997",
|
||||
price: "3.997",
|
||||
features: [
|
||||
"Até 500 alunos",
|
||||
"Método fônico completo",
|
||||
@ -48,7 +48,7 @@ const defaultPlans: PlanProps[] = [
|
||||
{
|
||||
title: "Rede de Ensino",
|
||||
description: "Para redes de escolas",
|
||||
price: "4.997",
|
||||
price: "9.887",
|
||||
features: [
|
||||
"Alunos ilimitados",
|
||||
"Sistema completo",
|
||||
@ -105,7 +105,8 @@ export function PlanForSchools({
|
||||
</ul>
|
||||
|
||||
<Button
|
||||
onClick={plan.onSubscribe}
|
||||
// onClick={plan.onSubscribe}
|
||||
onClick={() => window.location.href = 'https://typebot-public.inventivos.co/leiturama-leads'}
|
||||
variant={plan.highlighted ? 'primary' : 'outline'}
|
||||
className="w-full"
|
||||
trackingId={`plan_subscribe_${plan.title.toLowerCase().replace(/\s+/g, '_')}`}
|
||||
@ -121,7 +122,7 @@ export function PlanForSchools({
|
||||
position: index.toString()
|
||||
}}
|
||||
>
|
||||
Começar Agora
|
||||
Entre em contato
|
||||
</Button>
|
||||
</div>
|
||||
))}
|
||||
@ -133,7 +134,8 @@ export function PlanForSchools({
|
||||
</p>
|
||||
<div className="flex justify-center gap-4">
|
||||
<Button
|
||||
onClick={onContactClick}
|
||||
// onClick={onContactClick}
|
||||
onClick={() => window.location.href = 'https://typebot-public.inventivos.co/leiturama-leads'}
|
||||
variant="outline"
|
||||
size="lg"
|
||||
className="gap-2"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user