Skip to content

Commit

Permalink
fix: info accordions in ask page
Browse files Browse the repository at this point in the history
  • Loading branch information
seelengxd committed Sep 27, 2024
1 parent 69dec61 commit 00a02c6
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions frontend/app/(authenticated)/ask/ask-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,22 +219,36 @@ const AskPage = ({ setIsLoading, isLoading }: AskPageProps) => {
<Accordion type="multiple">
<AccordionItem value="Learn more">
<AccordionTrigger>Learn more</AccordionTrigger>
<AccordionContent>
- feature, ss - how it works, why better than chatgpt -
faqs - personal data
<AccordionContent className="flex flex-col gap-2">
<p>
Jippy has been studying CNA articles daily. It uses
generative AI to generate points for your essay
questions and supplements them with relevant articles.
Jippy is however, a newborn frog in the world events
and reasoning, so we would appreciate your support and
feedback!
</p>
<p>
Jippy will also keep your personal data safe and
doesn&apos;t send it to any third parties.
</p>
</AccordionContent>
</AccordionItem>

<AccordionItem value="upcoming-features">
<AccordionTrigger>Upcoming features</AccordionTrigger>
<AccordionContent></AccordionContent>
</AccordionItem>

<AccordionItem value="help-feedback">
<AccordionTrigger>
Get help or give feedback
</AccordionTrigger>
<AccordionContent></AccordionContent>
<AccordionContent>
Spot an issue? Send us an email at{" "}
<a
className="underline"
href="mailto:[email protected]"
>
[email protected]
</a>
.
</AccordionContent>
</AccordionItem>
</Accordion>
</div>
Expand Down

0 comments on commit 00a02c6

Please sign in to comment.