Initial commit
This commit is contained in:
@@ -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-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}`;
|
||||
Reference in New Issue
Block a user