import { createFileRoute } from "@tanstack/react-router";
import { LandingPage } from "@/components/LandingPage";
import { marketing } from "@/lib/niches";

export const Route = createFileRoute("/marketing")({
  component: MarketingPage,
  head: () => ({
    meta: [
      { title: "Agência de Marketing Digital — .PONTO" },
      {
        name: "description",
        content:
          "Gestão completa de redes sociais, branding e tráfego pago. Sua marca forte no digital com a .PONTO.",
      },
    ],
  }),
});

function MarketingPage() {
  return <LandingPage cfg={marketing} />;
}
