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