import type { Metadata } from "next";
import { Suspense } from "react";

import SoftLaunchLoginForm from "../SoftLaunchLoginForm";

export const metadata: Metadata = {
  title: "Soft launch — nội bộ",
  robots: { index: false, follow: false },
};

export default function SoftLaunchLoginPage() {
  return (
    <main className="min-h-[70dvh] bg-stone-950 px-4 py-16 text-stone-100">
      <Suspense fallback={<p className="text-center text-stone-400">Đang tải…</p>}>
        <SoftLaunchLoginForm />
      </Suspense>
    </main>
  );
}
