Initial commit

This commit is contained in:
admin
2026-05-26 22:46:00 +02:00
commit 7e2c2ff89c
256 changed files with 51523 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* Single source of truth for product branding.
* Change values here and the rest of the app picks them up.
*/
export const BRAND = {
name: "Pinkudex",
tagline: "Your JAV index",
description: "A pink-filmera index for JAV cover art, cast, and the metadata behind every release.",
/** Prefix for any browser localStorage keys this app writes. */
storagePrefix: "pinkudex",
} as const;
export const storageKey = (key: string) => `${BRAND.storagePrefix}-${key}`;