Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-05-18 22:03:55 +00:00
parent e89a6c91b0
commit 421064cc73

View file

@ -4,10 +4,36 @@ import { HeroSection } from "@/components/mika/HeroSection";
import { FeaturesSection } from "@/components/mika/FeaturesSection"; import { FeaturesSection } from "@/components/mika/FeaturesSection";
import { HowItWorksSection } from "@/components/mika/HowItWorksSection"; import { HowItWorksSection } from "@/components/mika/HowItWorksSection";
import { PlansSection } from "@/components/mika/PlansSection"; import { PlansSection } from "@/components/mika/PlansSection";
import { FaqSection } from "@/components/mika/FaqSection"; import { FaqSection, faqs } from "@/components/mika/FaqSection";
import { LandingFooter } from "@/components/mika/LandingFooter"; import { LandingFooter } from "@/components/mika/LandingFooter";
export const Route = createFileRoute("/")({ export const Route = createFileRoute("/")({
head: () => ({
meta: [
{ property: "og:title", content: "Mika — Assistente Pessoal IA no Telegram" },
{
property: "og:description",
content:
"Agentes de IA personalizados que aprendem com você e atendem direto no Telegram. Planos a partir de R$ 69,90/mês.",
},
{ property: "og:url", content: "https://mika.domco.ai/" },
],
links: [{ rel: "canonical", href: "https://mika.domco.ai/" }],
scripts: [
{
type: "application/ld+json",
children: JSON.stringify({
"@context": "https://schema.org",
"@type": "FAQPage",
mainEntity: faqs.map((f) => ({
"@type": "Question",
name: f.q,
acceptedAnswer: { "@type": "Answer", text: f.a },
})),
}),
},
],
}),
component: LandingPage, component: LandingPage,
}); });