diff --git a/app/routes/Faq.tsx b/app/routes/Faq.tsx new file mode 100644 index 00000000..85448020 --- /dev/null +++ b/app/routes/Faq.tsx @@ -0,0 +1,142 @@ +import { ChevronDown, ChevronRight, SearchIcon, SlashIcon } from "lucide-react"; + +import Header from "~/components/ui/header"; + +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 +

+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+ +
+
+
+ ); +} + +export default Faq;