Skip to content

Commit

Permalink
test with build
Browse files Browse the repository at this point in the history
  • Loading branch information
benbaruka committed Jan 31, 2025
1 parent fc83b90 commit 0777d57
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/src/app/components/FaqBar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import Image from 'next/image';
type Props = {
answer: string;
question: string;
Expand All @@ -15,7 +16,9 @@ export function FaqBar({question, answer, isOpen, onClick}: Props) {
>
<div className="flex justify-between items-center">
<h2 className="desktop:text-[20px] text-xs leading-[28px]">{question}</h2>
<img
<Image
width={20}
height={20}
src="/assets/down-cheveron.svg"
alt="Toggle"
className={isOpen ? 'transform rotate-180' : 'transform rotate-0'}
Expand Down

0 comments on commit 0777d57

Please sign in to comment.