mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 10:16:43 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
832ed1ff9f
commit
9a5c8e3b9a
1 changed files with 18 additions and 0 deletions
|
|
@ -27,6 +27,24 @@ 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: () => ({
|
||||||
|
meta: [
|
||||||
|
{ title: "Entrar na Mika — Acesse seu agente de IA" },
|
||||||
|
{
|
||||||
|
name: "description",
|
||||||
|
content:
|
||||||
|
"Faça login na sua conta Mika para acessar seu agente de IA pessoal, integrações e configurações no painel.",
|
||||||
|
},
|
||||||
|
{ property: "og:title", content: "Entrar na Mika" },
|
||||||
|
{
|
||||||
|
property: "og:description",
|
||||||
|
content: "Acesse seu agente de IA pessoal no painel da Mika.",
|
||||||
|
},
|
||||||
|
{ property: "og:url", content: "https://mika.domco.ai/login" },
|
||||||
|
{ name: "robots", content: "noindex,follow" },
|
||||||
|
],
|
||||||
|
links: [{ rel: "canonical", href: "https://mika.domco.ai/login" }],
|
||||||
|
}),
|
||||||
component: LoginPage,
|
component: LoginPage,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue