Skip to content

Commit

Permalink
FAQ content updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitjoping committed Aug 27, 2024
1 parent 0d920b4 commit d84c977
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/app/(routes)/(landing)/faqAndtestimonials.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import Ribon from "./ribon1";

import { People } from "../../../components/ui/people";
import FAQ from "@/components/ui/faq";

Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const AccordionItem = React.forwardRef<
>(({ className, ...props }, ref) => (
<AccordionPrimitive.Item
ref={ref}
className={cn("border-b", className)}
className={cn("border-b-[1px]", className)}
{...props}
/>
))
Expand Down
21 changes: 10 additions & 11 deletions src/components/ui/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,33 @@ export default function FAQ() {

<Accordion type="single" collapsible className="w-full">
<AccordionItem value="item-1">
<AccordionTrigger >Is it accessible?</AccordionTrigger>
<AccordionTrigger >What is 'GuruNimbus'?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
GuruNimbus" is a web app that uses Next.js, OpenAI, and Pinecone to deliver personalized professor and mentor insights. It goes beyond conventional rating systems by leveraging AI to offer detailed evaluations, helping students make informed decisions about their courses and instructors.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-4">
<AccordionTrigger >Is it accessible?</AccordionTrigger>
<AccordionTrigger >Can I submit my own review on "GuruNimbus"?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
GuruNimbus" does not accept user-submitted reviews. Instead, the platform uses RAG to provide feedback based on a curated list of reviews already in our pincone database.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-5">
<AccordionTrigger >Is it accessible?</AccordionTrigger>
<AccordionTrigger >How do you ensure the authenticity of reviews?</AccordionTrigger>
<AccordionContent>
Yes. It adheres to the WAI-ARIA design pattern.
We use a combination of automated and manual moderation processes to review and verify submissions. This helps ensure that the feedback we publish is authentic and valuable.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-2">
<AccordionTrigger>Is it styled?</AccordionTrigger>
<AccordionTrigger>How can I contact if I have an issue?</AccordionTrigger>
<AccordionContent>
Yes. It comes with default styles that matches the other
components&apos; aesthetic.
If you have any issues or questions, please use the "Contact Us" section on the site. Fill out the contact form, and our support team will get back to you as soon as possible.
</AccordionContent>
</AccordionItem>
<AccordionItem value="item-3">
<AccordionTrigger>Is it animated?</AccordionTrigger>
<AccordionTrigger>How can I contribute to GuruNimbus?</AccordionTrigger>
<AccordionContent>
Yes. It's animated by default, but you can disable it if you prefer.
Well, thanks for taking time to contribute to "GuruNimbus", You can check our GitHub repository to read the guidlines to contribute.
</AccordionContent>
</AccordionItem>
</Accordion>
Expand Down

0 comments on commit d84c977

Please sign in to comment.