v2: ID verification by state, 15 photos/5 albums, 20 quick replies, logo, mobile polish

This commit is contained in:
Ryan Salazar
2026-06-26 21:08:57 -04:00
parent c6238c3bcf
commit e03d929977
121 changed files with 6380 additions and 153 deletions

7
src/lib/limits.ts Normal file
View File

@@ -0,0 +1,7 @@
/** Hard product limits — enforced in UI and DB triggers */
export const MAX_PHOTOS_PER_USER = 15;
export const MAX_ALBUMS_PER_USER = 5;
export const MAX_CANNED_MESSAGES = 20;
export const MAX_PHOTO_SIZE_MB = 8;
export const MAX_CANNED_MESSAGE_LENGTH = 500;
export const MAX_ALBUM_NAME_LENGTH = 40;