improve SEO, add robots

This commit is contained in:
2025-05-07 14:37:34 +02:00
parent 11e1e31ac5
commit c071b9c052
2 changed files with 13 additions and 3 deletions

11
src/app/robots.ts Normal file
View File

@@ -0,0 +1,11 @@
import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
sitemap: "https://investingfire.com/sitemap.xml",
};
}