diff --git a/src/components/sections/features/FeaturesArrowCards.tsx b/src/components/sections/features/FeaturesArrowCards.tsx index 3f85d36..b0321be 100644 --- a/src/components/sections/features/FeaturesArrowCards.tsx +++ b/src/components/sections/features/FeaturesArrowCards.tsx @@ -8,6 +8,7 @@ import ScrollReveal from "@/components/ui/ScrollReveal"; type FeatureItem = { title: string; tags: string[]; + className?: string; } & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); interface FeaturesArrowCardsProps { @@ -52,7 +53,7 @@ const FeaturesArrowCards = ({ {(primaryButton || secondaryButton) && (
{primaryButton &&
)} @@ -64,7 +65,7 @@ const FeaturesArrowCards = ({
-
+

{item.title}

@@ -84,4 +85,4 @@ const FeaturesArrowCards = ({ ); }; -export default FeaturesArrowCards; +export default FeaturesArrowCards; \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 2479c3e..bbaa604 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -59,6 +59,7 @@ export default function HomePage() { "Organic", ], imageSrc: "https://img.b2bpic.net/free-photo/redeyed-tree-frog-closeup-agalychnis-callidryas-red-eyes-closeup_488145-3176.jpg?id=26824352", + className: "!bg-yellow-500 !text-black", }, { title: "Precision Roasting", @@ -246,4 +247,4 @@ export default function HomePage() {
); -} +} \ No newline at end of file