Files
HytaleMMORPG/src/lib/constants.ts
T
gpatruno e45e9f154e update
2026-06-11 17:30:13 +02:00

33 lines
1.0 KiB
TypeScript
Raw 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.
export const SITE = {
name: "Gaufrement Bon",
logoUrl: "/logo.png",
tagline: "Gaufres artisanales, textures croustillantes, cœur moelleux.",
address: "Impasse du moulin de la tour, 30200 Bagnols-sur-Cèze",
phone: "06 44 08 08 97",
email: "gaufrementbon30@gmail.com",
mapsEmbedUrl:
"https://www.google.com/maps?q=Impasse+du+moulin+de+la+tour,+30200+Bagnols-sur-C%C3%A8ze&hl=fr&z=16&output=embed",
hours: [
{ days: "Lun — Ven", hours: "11h — 22h" },
{ days: "Sam — Dim", hours: "10h — 23h" },
],
} as const;
export const WAFFLE_CATEGORIES = {
SUCREE: "SUCREE",
SALEE: "SALEE",
DU_MOIS: "DU_MOIS",
} as const;
export type WaffleCategory =
(typeof WAFFLE_CATEGORIES)[keyof typeof WAFFLE_CATEGORIES];
export const CATEGORY_LABELS: Record<string, string> = {
SUCREE: "Gaufres sucrées",
SALEE: "Gaufres salées",
DU_MOIS: "Gaufre du moment",
};
/** Préfixe des routes API réservées à ladmin (cookie de session limité à ce chemin). */
export const ADMIN_API = "/admin/api";