Files
bd414c86-362c-4d9d-9fc3-ef6…/src/utils/facts.ts

14 lines
750 B
TypeScript

export const funnyFacts: string[] = [
"Our sourdough starter is named 'Dough-minatrix'. She's very demanding.",
"We once tried to make a bread so big it had its own zip code.",
"Our croissants are 99% butter, 1% magic. And a little bit of flour.",
"Legend says our head baker can communicate with yeast on a spiritual level.",
"We accidentally invented a new pastry. We call it the 'Oopsie-danish'.",
"Our cinnamon rolls are so good, they've been known to solve family disputes.",
"The secret ingredient is love. And an alarming amount of butter.",
"Our bakers sing to the bread. It makes the crust extra crispy.",
];
export const getRandomFact = (): string => {
return funnyFacts[Math.floor(Math.random() * funnyFacts.length)];
};