feat: launch public product website

This commit is contained in:
2026-08-20 20:13:35 -04:00
parent d3c30859b2
commit 81109f36ea
41 changed files with 4378 additions and 386 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
disallow: [
"/api/",
"/briefs/",
"/cvs",
"/executive-summary",
"/landscape",
"/login",
"/walgreens",
],
},
};
}