feat(site): tighten proof, contact, and inquiry delivery

Lead with Batch on the home page, drop the product changelog, add a
domain note, and stop reporting success when SMTP fails.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Jan Wagner
2026-08-16 11:12:40 +02:00
co-authored by Cursor
parent aa55c29dbf
commit 0482b780f4
23 changed files with 465 additions and 84 deletions
+6
View File
@@ -0,0 +1,6 @@
export const offerIds = ["process", "product", "collaboration"] as const;
export type OfferId = (typeof offerIds)[number];
export function isOfferId(value: string): value is OfferId {
return (offerIds as readonly string[]).includes(value);
}