'use client' import { HelpCircle, Book, MessageCircle, Mail } from 'lucide-react' import { useRedirectIfNotAuth } from '@/utils/auth' export default function HelpPage() { const userInfo = useRedirectIfNotAuth() if (!userInfo) { return (

Loading...

) } return (

Help Center

Getting Started

New to pickleglass? Learn about basic features and setup methods.

  • • Setting up personalized contexts
  • • Selecting presets and creating custom contexts
  • • Checking activity records
  • • Changing settings

Frequently Asked Questions

Check out frequently asked questions and answers from other users.

How do I change the context?

On the Personalize page, select a preset or enter a custom context, then click the Save button.

Where can I check my activity history?

You can check your past activity records on the My Activity page.

Community

Connect with other users and share tips.

Contact Us

Couldn't find a solution? Contact us directly.

💡 Tip

Each context is optimized for different situations. Choose the appropriate preset for your work environment, or create your own custom context!

) }