diff --git a/app/routes/faq.tsx b/app/routes/faq.tsx index e8c63475..85448020 100644 --- a/app/routes/faq.tsx +++ b/app/routes/faq.tsx @@ -1,37 +1,142 @@ -import { ChevronRight } from "lucide-react"; +import { ChevronDown, ChevronRight, SearchIcon, SlashIcon } from "lucide-react"; -import QuestionForm from "~/components/faq/form"; +import Header from "~/components/ui/header"; -function FAQPage() { +const items = [ + { text: "What is EcoClean?" }, + { text: "How does EcoClean work?" }, + { text: "What are the key features of EcoClean?" }, + { text: "Who can benefit from using EcoClean?" }, + { text: "What are the system requirements for EcoClean?" }, + { text: "How do I use EcoClean?" }, + { text: "How do I store EcoClean?" }, + { text: "How much does EcoClean cost?" }, + { text: "Are there any discounts available?" }, +]; + +function Faq() { return ( -
-
- -
-

+
+
+
+
+

+ + Contact us + + + FAQ +

+
+
+

Frequently asked questions -

-
+
+

Questions you might ask about our product -

+

+
+ +
+

+ + Contact us + + + faq +

+
+ +
+ + +
+ + +
+
+ {items.map((item, index) => ( +
+

+ {item.text} +

+ +
+ ))} +
+
+ +
+
+

+ Still have questions? +

+

+ Fill the form and enter your message +

+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
-
-
-

- Search Component Goes here -

-
-
- -
+
); } -export default FAQPage; +export default Faq;