diff --git a/app/FAQ/component/contact-section.tsx b/app/FAQ/component/contact-section.tsx
new file mode 100644
index 0000000..45a49a5
--- /dev/null
+++ b/app/FAQ/component/contact-section.tsx
@@ -0,0 +1,28 @@
+import { Button } from "@/components/ui/button"
+import { Mail, Phone } from 'lucide-react'
+
+export default function ContactSection() {
+ return (
+
+
Still have questions?
+
Our support team is here to help you
+
+
+
+
+
+ )
+}
+
diff --git a/app/FAQ/component/faq-component.tsx b/app/FAQ/component/faq-component.tsx
new file mode 100644
index 0000000..bd09823
--- /dev/null
+++ b/app/FAQ/component/faq-component.tsx
@@ -0,0 +1,86 @@
+'use client'
+
+import { useState } from 'react'
+import { Input } from "@/components/ui/input"
+import {
+ Accordion,
+ AccordionContent,
+ AccordionItem,
+ AccordionTrigger,
+} from "@/components/ui/accordion"
+import { Search } from 'lucide-react'
+
+const faqs = [
+ {
+ question: "What is Leetcode Journal, and how can it help me?",
+ answer: "Leetcode Journal is a tool designed to help developers track, organize, and review their Leetcode solutions. It provides an intuitive interface to save solutions, categorize problems, monitor progress, and analyze performance. It's great for personal learning and showcasing problem-solving skills."
+ },
+ {
+ question: "Can I import my existing Leetcode solutions into the platform?",
+ answer: "Yes, Leetcode Journal supports solution imports. You can upload your solutions as files or manually enter them to categorize and analyze them within the platform."
+ },
+ {
+ question: "How does the progress monitoring feature work?",
+ answer: "The progress monitoring feature provides detailed statistics on your problem-solving journey, including the number of problems solved by difficulty, topic, and monthly trends. It also shows your streaks and acceptance rates to keep you motivated."
+ },
+ {
+ question: "Is my data secure on Leetcode Journal?",
+ answer: "We take data security seriously. All your solutions and progress data are encrypted and securely stored on our servers. You have complete control over your data, and it is never shared without your consent."
+ },
+ {
+ question: "Can I share my Leetcode Journal with others?",
+ answer: "Yes, you can create a shareable portfolio of your solutions to showcase your problem-solving skills to potential employers or peers. You can customize what information is shared."
+ },
+ {
+ question: "Does Leetcode Journal support team collaboration?",
+ answer: "Currently, Leetcode Journal is focused on individual users. However, we are exploring features for team collaboration and knowledge sharing in future updates."
+ }
+]
+
+export default function FAQComponent() {
+ const [searchTerm, setSearchTerm] = useState('')
+
+ const filteredFaqs = faqs.filter(faq =>
+ faq.question.toLowerCase().includes(searchTerm.toLowerCase()) ||
+ faq.answer.toLowerCase().includes(searchTerm.toLowerCase())
+ )
+
+ return (
+