"use client" import { dmSans125ClassName } from "@/lib/fonts" import { cn } from "@lib/utils" import { ArrowUpRight } from "lucide-react" const FAQS = [ { question: "How do I upgrade to Pro?", answer: 'Go to the Billing tab in settings and click "Upgrade to Pro". You\'ll be redirected to our secure payment processor.', }, { question: "What's included in the Pro plan?", answer: 'Go to the Billing tab in settings and click "Upgrade to Pro". You\'ll be redirected to our secure payment processor.', }, { question: "How do connections work?", answer: "Connections let you sync documents from Google Drive, Notion, and OneDrive automatically. supermemory will index and make them searchable.", }, { question: "Can I cancel my subscription anytime?", answer: "Yes. You can cancel anytime from the Billing tab. Your Pro features will remain active until the end of your billing period.", }, ] function SectionTitle({ children }: { children: React.ReactNode }) { return (

{children}

) } function SupportCard({ children }: { children: React.ReactNode }) { return (
{children}
) } function PillButton({ children, onClick, className, }: { children: React.ReactNode onClick?: () => void className?: string }) { return ( ) } export default function Support() { const handleMessageOnX = () => { window.open("https://x.com/supermemory", "_blank", "noopener,noreferrer") } const handleSendEmail = () => { window.location.href = "mailto:support@supermemory.com" } const handleJoinDiscord = () => { window.open( "https://supermemory.link/discord", "_blank", "noopener,noreferrer", ) } const handleShareFeedback = () => { window.open("https://x.com/supermemory", "_blank", "noopener,noreferrer") } return (
{/* Support & Help Section */}
Support & Help

Get help

Need assistance? We're here to help! Choose the best way to reach us.

Message us on X Join our Discord Send us an email
{/* FAQ Section */}
Frequently Asked Questions
{FAQS.map((faq, index) => (

{faq.question}

{faq.answer}

{index < FAQS.length - 1 && (
)}
))}
{/* Feedback Section */}
Feedback & Feature Requests

Have ideas for new features or improvements? We'd love to hear from you!

Share your feedback on X/Twitter
) }