1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/utils/constants.ts

12 lines
495 B
TypeScript

/** How long in milliseconds, until the cookie expires (10 years). */
export const COOKIE_MAX_AGE = 10 * 365.25 * 24 * 60 * 60 * 1000
export type CookiesStore = string | object | null | undefined
export const LOCALES = ["en-US", "fr-FR"] as const
export type Locale = (typeof LOCALES)[number]
export const DEFAULT_LOCALE = "en-US" satisfies Locale
export const THEMES = ["light", "dark"] as const
export type Theme = (typeof THEMES)[number]
export const DEFAULT_THEME = "dark" satisfies Theme