Files
tm-landing/app/robots.ts
T
2026-06-17 13:51:49 +03:30

14 lines
258 B
TypeScript

import type { MetadataRoute } from "next";
const siteUrl = "https://opplenz.com";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
sitemap: `${siteUrl}/sitemap.xml`,
};
}