1import type { MetadataRoute } from "next"; 2 3export default function robots(): MetadataRoute.Robots { 4 return { 5 rules: { 6 userAgent: "*", 7 allow: "/", 8 }, 9 sitemap: "https://www.openstatus.dev/sitemap.xml", 10 }; 11}