import type { Metadata } from 'next' import Link from 'next/link' import { siteConfig } from '@/lib/site' export const metadata: Metadata = { title: 'Support', description: 'Get support for GreenLens, including contact details, onboarding help, billing guidance, and privacy links.', } const faqs = [ { question: 'How do I identify a plant with GreenLens?', answer: 'Open the scanner, point your camera at the plant, and start a scan. GreenLens returns an identification result and care guidance.', }, { question: 'Do I need an account to use GreenLens?', answer: 'Some features can be explored first, but an account is recommended if you want to save scans, manage your collection, and access billing features.', }, { question: 'How do subscriptions and credits work?', answer: 'GreenLens offers Pro subscriptions and credit top-ups for AI-powered features. Billing and plan management are available inside the app.', }, { question: 'How can I contact support?', answer: 'Send a message to our support email with your platform, app version, and a short description of the issue. Screenshots help.', }, ] export default function SupportPage() { return (

Support

Help for scans, care plans, billing, and account questions.

GreenLens helps users identify plants, understand their condition, and keep a collection organized. If something breaks or feels unclear, this is the fastest place to start.

Email Support Privacy Policy

Contact

Email us at {siteConfig.supportEmail}

Include your device type, app version, and what happened right before the issue.

Common topics

  • Plant identification issues
  • Care reminder questions
  • Subscriptions and credit purchases
  • Account access and saved data

Legal

Review our Privacy Policy and Imprint.

These links should be used in App Store Connect before submission.

FAQ

Quick answers before you write support.

{faqs.map((item) => (

{item.question}

{item.answer}

))}
) }