Files
2026-05-26 22:46:00 +02:00

14 lines
480 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 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}`;