14 lines
480 B
TypeScript
14 lines
480 B
TypeScript
/**
|
||
* 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-film–era 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}`;
|