mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 06:56:44 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
e89a6c91b0
commit
421064cc73
1 changed files with 27 additions and 1 deletions
|
|
@ -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,
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue