From fe729e40a0e0aa231d03584181167920274aa51b Mon Sep 17 00:00:00 2001 From: Khang Duy LAI Date: Wed, 11 Mar 2026 14:38:44 +0100 Subject: [PATCH] feat: add RoastCard component with hover effects --- src/components/RoastCard.jsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/components/RoastCard.jsx diff --git a/src/components/RoastCard.jsx b/src/components/RoastCard.jsx new file mode 100644 index 0000000..3900873 --- /dev/null +++ b/src/components/RoastCard.jsx @@ -0,0 +1,18 @@ +export default function RoastCard({ image, caption }) { + return ( +
+
+ {caption} +
+
+

+ {caption} +

+
+
+ ) +}