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