From 74968e55b263dd384e8be09882d7abfd83c30b07 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:47:56 +0000 Subject: [PATCH] Update src/app/faq/page.tsx --- src/app/faq/page.tsx | 121 ++++++++----------------------------------- 1 file changed, 22 insertions(+), 99 deletions(-) diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index 968fcfb..77c5931 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -1,117 +1,40 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/components/theme/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { HelpCircle } from "lucide-react"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function FAQ() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "FAQ", id: "/faq" }, - { name: "Contact", id: "/contact" }, - ]; - - const faqs = [ - { - id: "1", title: "What is CarLed?", content: - "CarLed is a global community platform for automotive enthusiasts, engineers, and designers. We connect petrolheads from around the world to collaborate on projects, share knowledge, and celebrate automotive innovation."}, - { - id: "2", title: "How do I join the CarLed community?", content: - "Joining is easy! Simply sign up on our website with your email address. You'll instantly get access to our community forums, Discord server, project collaboration tools, and exclusive member resources."}, - { - id: "3", title: "Is membership free?", content: - "Yes! Basic membership is completely free. We offer premium memberships with additional features like advanced project tools and exclusive content, but our core community features are always free."}, - { - id: "4", title: "How can I collaborate on projects?", content: - "Our platform provides dedicated collaboration spaces where you can create projects, invite team members, share files, and communicate in real-time. Browse our Project Board to find existing projects or start your own."}, - { - id: "5", title: "What kind of projects can I work on?", content: - "The possibilities are endless! From engine tuning and custom builds to design innovations and software development. Our community supports automotive projects of all types and skill levels."}, - { - id: "6", title: "How do I get mentorship?", content: - "Connect with experienced engineers and designers in our community. Post your questions, join mentorship programs, and participate in skill-sharing sessions. We have dedicated channels for peer learning and expert guidance."}, - { - id: "7", title: "Can I share my own projects?", content: - "Absolutely! We encourage community members to showcase their work. Share project updates, get feedback, find collaborators, and inspire others with your creations. Use our Project Gallery to showcase your builds."}, - { - id: "8", title: "What resources are available?", content: - "We provide technical documentation, tutorial videos, CAD resources, performance calculators, and more. Our knowledge base is constantly growing with contributions from community experts."}, - { - id: "9", title: "How does the community handle disputes?", content: - "We have a dedicated moderation team and community guidelines to ensure a respectful environment. Disputes are handled through a fair conflict resolution process. Our Community Standards document outlines expectations."}, - { - id: "10", title: "Can I connect my social media?", content: - "Yes! You can link your social media profiles to your CarLed account to build your professional network. You can also share your CarLed achievements directly to your social media."}, - { - id: "11", title: "How often do you host events?", content: - "We host monthly community meetups, quarterly virtual conferences, and yearly global summits. Regional chapters organize additional local events. Check our Events Calendar to stay updated."}, - { - id: "12", title: "What's your data privacy policy?", content: - "We take privacy seriously. Your data is encrypted and protected according to industry standards. Read our full Privacy Policy for detailed information about how we collect, use, and protect your information."}, - ]; +const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Features', id: '/#features' }, + { name: 'Dashboard', id: '/dashboard' }, + { name: 'Sign In', id: '/login' }, +]; +export default function FAQPage() { return ( - - -
- +
- -