Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-17 17:05:58 +00:00
parent 104dd8af7e
commit 09f706851e
3 changed files with 180 additions and 180 deletions

View file

@ -6,6 +6,8 @@ import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { IMaskInput } from "react-imask";
import { toast } from "sonner";
import { supabase } from "@/integrations/supabase/client";
import { translateAuthError } from "@/lib/auth-errors";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
@ -37,17 +39,22 @@ export function EnterpriseLeadForm() {
const onSubmit = async (data: FormValues) => {
setSubmitting(true);
try {
// Etapa 2: gravar em enterprise_leads via supabase.from(...).insert(...)
// Por ora: feedback otimista para o usuário.
await new Promise((r) => setTimeout(r, 700));
const { error } = await supabase.from("enterprise_leads").insert({
company_name: data.company_name,
contact_name: data.contact_name,
email: data.email,
phone: data.phone,
team_size: data.team_size,
message: data.message || null,
status: "new",
});
setSubmitting(false);
if (error) {
toast.error(translateAuthError(error.message));
return;
}
toast.success("Recebemos seu contato! Falamos com você em até 1 dia útil.");
reset();
} catch {
toast.error("Algo deu errado do nosso lado. Já estamos investigando.");
} finally {
setSubmitting(false);
}
};
const phone = watch("phone") || "";

View file

@ -3,91 +3,63 @@
import { useState } from "react";
import { Link } from "@tanstack/react-router";
import { Check } from "lucide-react";
import { useQuery } from "@tanstack/react-query";
import { supabase } from "@/integrations/supabase/client";
import { Button } from "@/components/ui/button";
import { Switch } from "@/components/ui/switch";
import { Badge } from "@/components/ui/badge";
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogTrigger } from "@/components/ui/dialog";
import { Skeleton } from "@/components/ui/skeleton";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogDescription,
DialogTrigger,
} from "@/components/ui/dialog";
import { EnterpriseLeadForm } from "./EnterpriseLeadForm";
import { cn } from "@/lib/utils";
// Fallback estático — na Etapa 2 será substituído por query Supabase à tabela `plans`.
const STATIC_PLANS = [
{
slug: "basic",
name: "Basic",
description: "Para começar a usar IA no dia a dia.",
monthly: 69.9,
yearly: 671.04,
highlighted: false,
is_enterprise: false,
features: [
"1 agente pessoal no Telegram",
"Memória persistente básica",
"Integração Google Workspace",
"5 skills personalizadas",
"Suporte por e-mail",
],
},
{
slug: "starter",
name: "Starter",
description: "Para quem usa IA todos os dias.",
monthly: 199.9,
yearly: 1919.04,
highlighted: false,
is_enterprise: false,
features: [
"Tudo do Basic",
"Memória avançada e contextual",
"Skills ilimitadas",
"Agendamentos automáticos",
"Suporte prioritário",
],
},
{
slug: "professional",
name: "Professional",
description: "Para profissionais e times pequenos.",
monthly: 399.9,
yearly: 3839.04,
highlighted: true,
is_enterprise: false,
features: [
"Tudo do Starter",
"VPS dedicada de alta performance",
"Modelos de IA premium",
"Integrações personalizadas",
"Onboarding 1:1",
"Suporte em horário estendido",
],
},
{
slug: "enterprise",
name: "Enterprise",
description: "Para empresas com necessidades específicas.",
monthly: null,
yearly: null,
highlighted: false,
is_enterprise: true,
features: [
"Tudo do Professional",
"Múltiplos agentes",
"SSO e gestão de equipe",
"SLA contratual",
"Treinamento da equipe",
"Account manager dedicado",
],
},
] as const;
interface PlanRow {
id: string;
slug: string;
name: string;
description: string | null;
price_monthly_brl: number | null;
price_yearly_brl: number | null;
features: string[];
highlighted: boolean;
is_enterprise: boolean;
display_order: number;
}
const fmtBRL = (v: number) =>
v.toLocaleString("pt-BR", { minimumFractionDigits: 2, maximumFractionDigits: 2 });
function usePlans() {
return useQuery({
queryKey: ["plans"],
staleTime: 5 * 60_000,
queryFn: async (): Promise<PlanRow[]> => {
const { data, error } = await supabase
.from("plans")
.select("*")
.order("display_order", { ascending: true });
if (error) throw error;
return (data || []).map((p) => ({
...p,
features: Array.isArray(p.features) ? (p.features as string[]) : [],
})) as PlanRow[];
},
});
}
export function PlansSection() {
const [yearly, setYearly] = useState(false);
const { data: plans, isLoading } = usePlans();
return (
<section id="planos" className="py-20 sm:py-28 bg-background">
<section id="planos" className="py-20 sm:py-28 bg-background scroll-mt-20">
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div className="max-w-2xl mx-auto text-center">
<h2 className="text-3xl sm:text-4xl font-bold tracking-tight">Planos para cada estágio</h2>
@ -96,21 +68,42 @@ export function PlansSection() {
</p>
<div className="mt-8 inline-flex items-center gap-3 bg-muted rounded-full px-4 py-2">
<span className={cn("text-sm font-medium", !yearly && "text-foreground", yearly && "text-muted-foreground")}>
<span
className={cn(
"text-sm font-medium",
!yearly ? "text-foreground" : "text-muted-foreground",
)}
>
Mensal
</span>
<Switch checked={yearly} onCheckedChange={setYearly} aria-label="Alternar entre mensal e anual" />
<span className={cn("text-sm font-medium flex items-center gap-2", yearly && "text-foreground", !yearly && "text-muted-foreground")}>
<Switch
checked={yearly}
onCheckedChange={setYearly}
aria-label="Alternar entre mensal e anual"
/>
<span
className={cn(
"text-sm font-medium flex items-center gap-2",
yearly ? "text-foreground" : "text-muted-foreground",
)}
>
Anual
<Badge className="bg-success/15 text-success hover:bg-success/15 border-0 font-semibold">20% off</Badge>
<Badge className="bg-success/15 text-success hover:bg-success/15 border-0 font-semibold">
20% off
</Badge>
</span>
</div>
</div>
<div className="mt-14 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 items-stretch">
{STATIC_PLANS.map((plan) => {
const price = yearly ? plan.yearly : plan.monthly;
const monthlyEquivalent = yearly && plan.yearly ? plan.yearly / 12 : null;
{isLoading
? Array.from({ length: 4 }).map((_, i) => (
<Skeleton key={i} className="h-[480px] rounded-xl" />
))
: (plans || []).map((plan) => {
const monthly = plan.price_monthly_brl ?? 0;
const yearlyPrice = plan.price_yearly_brl ?? 0;
const monthlyEquivalent = yearly && yearlyPrice ? yearlyPrice / 12 : monthly;
return (
<article
key={plan.slug}
@ -140,13 +133,13 @@ export function PlansSection() {
<div className="flex items-baseline gap-1">
<span className="text-sm text-muted-foreground">R$</span>
<span className="text-4xl font-bold tracking-tight">
{fmtBRL(yearly && monthlyEquivalent ? monthlyEquivalent : (price as number))}
{fmtBRL(monthlyEquivalent)}
</span>
<span className="text-sm text-muted-foreground">/mês</span>
</div>
{yearly && (
{yearly && yearlyPrice > 0 && (
<p className="mt-1 text-xs text-muted-foreground">
R$ {fmtBRL(plan.yearly!)} cobrados anualmente
R$ {fmtBRL(yearlyPrice)} cobrados anualmente
</p>
)}
</>
@ -156,7 +149,10 @@ export function PlansSection() {
<ul className="mt-6 space-y-3 flex-1">
{plan.features.map((f) => (
<li key={f} className="flex items-start gap-2 text-sm">
<Check className="h-4 w-4 text-success mt-0.5 flex-shrink-0" aria-hidden />
<Check
className="h-4 w-4 text-success mt-0.5 flex-shrink-0"
aria-hidden
/>
<span>{f}</span>
</li>
))}
@ -166,13 +162,16 @@ export function PlansSection() {
{plan.is_enterprise ? (
<Dialog>
<DialogTrigger asChild>
<Button variant="outline" className="w-full rounded-lg">Falar com vendas</Button>
<Button variant="outline" className="w-full rounded-lg">
Falar com vendas
</Button>
</DialogTrigger>
<DialogContent className="max-w-lg">
<DialogHeader>
<DialogTitle>Plano Enterprise</DialogTitle>
<DialogDescription>
Conte um pouco sobre sua empresa. Nosso time entra em contato em até 1 dia útil.
Conte um pouco sobre sua empresa. Nosso time entra em contato em até
1 dia útil.
</DialogDescription>
</DialogHeader>
<EnterpriseLeadForm />
@ -188,7 +187,10 @@ export function PlansSection() {
: "bg-foreground hover:bg-foreground/90 text-background",
)}
>
<Link to="/signup" search={{ plan: plan.slug, cycle: yearly ? "yearly" : "monthly" } as never}>
<Link
to="/signup"
search={{ plan: plan.slug, cycle: yearly ? "yearly" : "monthly" }}
>
Assinar agora
</Link>
</Button>

View file

@ -236,12 +236,3 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
import type { getRouter } from './router.tsx'
import type { createStart } from '@tanstack/react-start'
declare module '@tanstack/react-start' {
interface Register {
ssr: true
router: Awaited<ReturnType<typeof getRouter>>
}
}