+ );
+}
diff --git a/src/components/helpcenter/FAQSection.tsx b/src/components/helpcenter/FAQSection.tsx
new file mode 100644
index 0000000..4efcf64
--- /dev/null
+++ b/src/components/helpcenter/FAQSection.tsx
@@ -0,0 +1,83 @@
+// components/FAQSection.tsx
+'use client';
+
+import React, { useState } from 'react';
+import { ChevronDown } from 'lucide-react';
+
+const faqs = [
+ {
+ question: 'Is BrowsePing really free and open-source?',
+ answer: 'Yes! BrowsePing is completely free to use and open-source under the MIT License. You can view, modify, and contribute to our code on GitHub. We believe in transparent, community-driven development.',
+ },
+ {
+ question: 'Which browsers does BrowsePing support?',
+ answer: 'BrowsePing currently supports Chrome, Firefox, Edge, and Brave browsers. We\'re working on Safari support. All extensions are available on their respective browser stores.',
+ },
+ {
+ question: 'How does BrowsePing protect my privacy?',
+ answer: 'Privacy is our top priority. All social interactions are opt-in, and you control exactly what you share. We use end-to-end encryption for private messages and never sell your data. Learn more in our Privacy Policy.',
+ },
+ {
+ question: 'Can I use BrowsePing without creating an account?',
+ answer: 'Yes! You can use basic features anonymously. For social features like creating groups and persistent profiles, you\'ll need to create a free account with just an email address.',
+ },
+ {
+ question: 'How do I report inappropriate content or users?',
+ answer: 'You can report directly from any shared link or user profile. Our moderation team reviews reports promptly. We also provide community moderation tools for group admins.',
+ },
+];
+
+export default function FAQSection() {
+ const [openIndex, setOpenIndex] = useState(0);
+
+ const toggleFAQ = (index: number) => {
+ setOpenIndex(openIndex === index ? null : index);
+ };
+
+ return (
+
+
+
Frequently Asked Questions
+
+ Quick answers to the most common questions about BrowsePing
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx
index 43cf909..0f5d336 100644
--- a/src/components/layout/Footer.tsx
+++ b/src/components/layout/Footer.tsx
@@ -1,7 +1,13 @@
-import React from 'react';
-import Link from 'next/link';
-import Image from 'next/image';
-import { FiGithub, FiMail, FiHeart, FiTwitter, FiLinkedin } from 'react-icons/fi';
+import React from "react";
+import Link from "next/link";
+import Image from "next/image";
+import {
+ FiGithub,
+ FiMail,
+ FiHeart,
+ FiTwitter,
+ FiLinkedin,
+} from "react-icons/fi";
const Footer = () => {
const currentYear = new Date().getFullYear();
@@ -26,12 +32,15 @@ const Footer = () => {
BrowsePing
-
Socialize Your Browsing
+
+ Socialize Your Browsing
+
- Transform your solitary browsing into a vibrant social experience. Connect with friends,
- share your digital presence, and discover what's capturing everyone's attention across the web.
+ Transform your solitary browsing into a vibrant social experience.
+ Connect with friends, share your digital presence, and discover
+ what's capturing everyone's attention across the web.