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

export const Route = createFileRoute("/free-hosting")({
  head: () => ({
    meta: [
      { title: "Free Hosting — LumenHost" },
      { name: "description", content: "Try LumenHost with our free hosting tier — perfect for testing, learning and small projects." },
    ],
  }),
  component: () => (
    <InfoPage
      title="Free Hosting"
      subtitle="Try LumenHost risk-free. Spin up a small project, test, learn — at zero cost."
    >
      <ul>
        <li>1 GB NVMe storage</li>
        <li>1 free subdomain</li>
        <li>Free SSL certificate</li>
        <li>Community support</li>
      </ul>
      <p>Upgrade any time to remove limits. No credit card required to start.</p>
    </InfoPage>
  ),
});
