From 471895c3ebbfdc80d42d99d64710f50b5cea42fb Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 27 Apr 2026 14:01:13 +0000 Subject: [PATCH] Bob AI: Change the background color of the div with data-webild-id=" --- src/components/sections/faq/FaqSimple.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/sections/faq/FaqSimple.tsx b/src/components/sections/faq/FaqSimple.tsx index 0f167eb..171f984 100644 --- a/src/components/sections/faq/FaqSimple.tsx +++ b/src/components/sections/faq/FaqSimple.tsx @@ -67,7 +67,11 @@ const FaqSimple = ({
handleToggle(index)} - className="p-3 2xl:p-4 rounded card cursor-pointer select-none" + className={cls( + "p-3 2xl:p-4 rounded card cursor-pointer select-none", + index === 0 ? "bg-red-500" : "" // Conditional red background for the first item + )} + data-webild-id="webild-1777298409123-pwmvcosxl" >

{item.question}

@@ -102,4 +106,4 @@ const FaqSimple = ({ ); }; -export default FaqSimple; +export default FaqSimple; \ No newline at end of file -- 2.49.1