import { MetadataRoute } from "next"; export default function robots(): MetadataRoute.Robots { return { rules: [ { userAgent: "GPTBot", allow: "/" }, { userAgent: "ChatGPT-User", allow: "/" }, { userAgent: "ClaudeBot", allow: "/" }, { userAgent: "PerplexityBot", allow: "/" }, { userAgent: "Applebot-Extended", allow: "/" }, { userAgent: "CCBot", disallow: "/" }, { userAgent: "Google-Extended", disallow: "/" }, { userAgent: "Bytespider", disallow: "/" }, { userAgent: "*", allow: "/", disallow: ["/api/", "/dashboard/"], }, ], sitemap: "https://agentlens.vectry.tech/sitemap.xml", }; }