update
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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 à l’admin (cookie de session limité à ce chemin). */
|
||||
export const ADMIN_API = "/admin/api";
|
||||
Reference in New Issue
Block a user