);
};
-export default ProductMediaCards;
+export default ProductMediaCards;
\ No newline at end of file
diff --git a/src/components/sections/testimonial/TestimonialMarqueeCards.tsx b/src/components/sections/testimonial/TestimonialMarqueeCards.tsx
index 996d8a5..3fc703a 100644
--- a/src/components/sections/testimonial/TestimonialMarqueeCards.tsx
+++ b/src/components/sections/testimonial/TestimonialMarqueeCards.tsx
@@ -2,6 +2,8 @@ import { motion } from "motion/react";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import ImageOrVideo from "@/components/ui/ImageOrVideo";
+import GlassmorphicBadge from "@/components/GlassmorphicBadge";
+import { getRandomFact } from "@/utils/facts";
type Testimonial = {
name: string;
diff --git a/src/utils/facts.ts b/src/utils/facts.ts
new file mode 100644
index 0000000..7113db5
--- /dev/null
+++ b/src/utils/facts.ts
@@ -0,0 +1,14 @@
+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)];
+};
\ No newline at end of file