Add marketplace section, OAuth checkout, social icons, 35% efficiency claim, preorder CTAs, enterprise Q1 2027, founding member limits, paragraph spacing in demo chat, no em dashes

This commit is contained in:
Will Anderson
2026-05-01 09:20:45 -05:00
parent 269eed41aa
commit ff1f9577db
38 changed files with 12432 additions and 39 deletions
+9
View File
@@ -112,6 +112,15 @@ fn handle_request(method: String, path: String, body: String) -> String {
if str_starts_with(clean, "/brand/") {
return route_brand(clean)
}
if str_eq(clean, "/legal/enterprise-terms") {
return fs_read(root_dir() + "/enterprise-terms.html")
}
if str_eq(clean, "/legal/terms") {
return fs_read(root_dir() + "/terms.html")
}
if str_eq(clean, "/about") {
return fs_read(root_dir() + "/about.html")
}
err_404(clean)
}