import type { MetadataRoute } from "next"; // Test environment: disallow all crawling. export default function robots(): MetadataRoute.Robots { return { rules: { userAgent: "*", disallow: "/" }, }; }