import { createFileRoute } from "@tanstack/react-router";
import { InfoPage } from "@/components/InfoPage";

export const Route = createFileRoute("/privacy")({
  head: () => ({ meta: [{ title: "Privacy Policy — LumenHost" }] }),
  component: () => <InfoPage title="Privacy Policy" subtitle="How we collect, use and protect your information." />,
});
