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

export const Route = createFileRoute("/contact")({
  head: () => ({ meta: [{ title: "Contact Us — LumenHost" }, { name: "description", content: "Get in touch with the LumenHost team." }] }),
  component: () => (
    <InfoPage title="Contact Us" subtitle="Reach our team — we typically reply in under 15 minutes, day or night.">
      <ul>
        <li><strong>Support:</strong> support@zyro.cloud</li>
        <li><strong>Business:</strong> business@zyro.cloud</li>
        <li><strong>Abuse:</strong> abuse@zyro.cloud</li>
      </ul>
      <p>For instant help, open a ticket from the billing portal or join our Discord community.</p>
    </InfoPage>
  ),
});
