From 421064cc73dc58c95d76bee1cd575d00109730c1 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 22:03:55 +0000 Subject: [PATCH] Changes Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com> --- src/routes/index.tsx | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 677ebb2..ec6fa46 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -4,10 +4,36 @@ import { HeroSection } from "@/components/mika/HeroSection"; import { FeaturesSection } from "@/components/mika/FeaturesSection"; import { HowItWorksSection } from "@/components/mika/HowItWorksSection"; 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"; 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, });