Adicionou metadados sociais por rota

X-Lovable-Edit-ID: edt-1bfd590e-bedf-49c5-9111-8300d17cb708
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-05-18 22:31:02 +00:00
commit b105e9c3e6
3 changed files with 54 additions and 45 deletions

View file

@ -7,18 +7,21 @@ import { PlansSection } from "@/components/mika/PlansSection";
import { FaqSection, faqs } from "@/components/mika/FaqSection"; import { FaqSection, faqs } from "@/components/mika/FaqSection";
import { LandingFooter } from "@/components/mika/LandingFooter"; import { LandingFooter } from "@/components/mika/LandingFooter";
const HOME_TITLE = "Mika — Assistente Pessoal IA no Telegram";
const HOME_DESCRIPTION =
"Agentes de IA personalizados que aprendem com você e atendem direto no Telegram. Planos a partir de R$ 69,90/mês.";
const HOME_URL = "https://mika.domco.ai/";
export const Route = createFileRoute("/")({ export const Route = createFileRoute("/")({
head: () => ({ head: () => ({
meta: [ meta: [
{ property: "og:title", content: "Mika — Assistente Pessoal IA no Telegram" }, { property: "og:title", content: HOME_TITLE },
{ { property: "og:description", content: HOME_DESCRIPTION },
property: "og:description", { property: "og:url", content: HOME_URL },
content: { name: "twitter:title", content: HOME_TITLE },
"Agentes de IA personalizados que aprendem com você e atendem direto no Telegram. Planos a partir de R$ 69,90/mês.", { name: "twitter:description", content: HOME_DESCRIPTION },
},
{ property: "og:url", content: "https://mika.domco.ai/" },
], ],
links: [{ rel: "canonical", href: "https://mika.domco.ai/" }], links: [{ rel: "canonical", href: HOME_URL }],
scripts: [ scripts: [
{ {
type: "application/ld+json", type: "application/ld+json",

View file

@ -27,24 +27,27 @@ export const Route = createFileRoute("/login")({
validateSearch: (search: Record<string, unknown>): LoginSearch => ({ validateSearch: (search: Record<string, unknown>): LoginSearch => ({
redirect: typeof search.redirect === "string" ? search.redirect : undefined, redirect: typeof search.redirect === "string" ? search.redirect : undefined,
}), }),
head: () => ({ head: () => {
meta: [ const title = "Entrar na Mika — Acesse seu agente de IA";
{ title: "Entrar na Mika — Acesse seu agente de IA" }, const ogTitle = "Entrar na Mika";
{ const description =
name: "description", "Faça login na sua conta Mika para acessar seu agente de IA pessoal, integrações e configurações no painel.";
content: const ogDescription = "Acesse seu agente de IA pessoal no painel da Mika.";
"Faça login na sua conta Mika para acessar seu agente de IA pessoal, integrações e configurações no painel.", const url = "https://mika.domco.ai/login";
}, return {
{ property: "og:title", content: "Entrar na Mika" }, meta: [
{ { title },
property: "og:description", { name: "description", content: description },
content: "Acesse seu agente de IA pessoal no painel da Mika.", { property: "og:title", content: ogTitle },
}, { property: "og:description", content: ogDescription },
{ property: "og:url", content: "https://mika.domco.ai/login" }, { property: "og:url", content: url },
{ name: "robots", content: "noindex,follow" }, { name: "twitter:title", content: ogTitle },
], { name: "twitter:description", content: ogDescription },
links: [{ rel: "canonical", href: "https://mika.domco.ai/login" }], { name: "robots", content: "noindex,follow" },
}), ],
links: [{ rel: "canonical", href: url }],
};
},
component: LoginPage, component: LoginPage,
}); });

View file

@ -40,25 +40,28 @@ export const Route = createFileRoute("/signup")({
plan: typeof search.plan === "string" ? search.plan : undefined, plan: typeof search.plan === "string" ? search.plan : undefined,
cycle: search.cycle === "yearly" || search.cycle === "monthly" ? search.cycle : undefined, cycle: search.cycle === "yearly" || search.cycle === "monthly" ? search.cycle : undefined,
}), }),
head: () => ({ head: () => {
meta: [ const title = "Criar conta na Mika — Comece seu agente de IA";
{ title: "Criar conta na Mika — Comece seu agente de IA" }, const ogTitle = "Criar conta na Mika";
{ const description =
name: "description", "Crie sua conta Mika em minutos e tenha um agente de IA pessoal no Telegram. Garantia de 30 dias para reembolso integral.";
content: const ogDescription =
"Crie sua conta Mika em minutos e tenha um agente de IA pessoal no Telegram. Garantia de 30 dias para reembolso integral.", "Comece em minutos. Agente de IA pessoal no Telegram com garantia de 30 dias.";
}, const url = "https://mika.domco.ai/signup";
{ property: "og:title", content: "Criar conta na Mika" }, return {
{ meta: [
property: "og:description", { title },
content: { name: "description", content: description },
"Comece em minutos. Agente de IA pessoal no Telegram com garantia de 30 dias.", { property: "og:title", content: ogTitle },
}, { property: "og:description", content: ogDescription },
{ property: "og:url", content: "https://mika.domco.ai/signup" }, { property: "og:url", content: url },
{ name: "robots", content: "noindex,follow" }, { name: "twitter:title", content: ogTitle },
], { name: "twitter:description", content: ogDescription },
links: [{ rel: "canonical", href: "https://mika.domco.ai/signup" }], { name: "robots", content: "noindex,follow" },
}), ],
links: [{ rel: "canonical", href: url }],
};
},
component: SignupPage, component: SignupPage,
}); });