> ## Documentation Index
> Fetch the complete documentation index at: https://docs.youware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# FAQ

> Comprehensive FAQ covering YouWare's AI coding features, project templates, full-stack development, publishing, and Pro features. Start building faster today.

Welcome to YouWare! We've built YouWare to be the fastest, most intuitive way to build and publish web applications. This comprehensive FAQ covers everything from core features to advanced development workflows.

## Getting Started: Your First Project

<AccordionGroup>
  <Accordion title="I'm a complete beginner. Where should I start after logging into YouWare?">
    We recommend heading straight to the "Create" button. You have two main paths:

    1. **Start with a simple prompt**: Describe your idea in natural language to the AI and watch it come to life.
    2. **Use a Template**: Browse curated project templates and community recommendations to kickstart instantly.

    Our template library is constantly expanding! Need inspiration? Check out the "Explore" page to see what other creators are building and trending projects.
  </Accordion>

  <Accordion title="What is a 'remix,' and how does it work?">
    A "remix" lets you instantly copy another creator's public project to your own workspace. Think of it as **making your own version of someone else's work**—like taking a recipe and adjusting it to your taste.

    **What you get:**

    * Full, editable copy in your workspace
    * Learn from and modify existing work
    * Build upon others' projects safely
    * Original project remains unaffected

    <Note>
      Creators can manage and share their templates through the **Creator Studio**.
    </Note>
  </Accordion>

  <Accordion title="How can I change my project's name and cover image?">
    You can manage these settings within the project editor. Look for the "Setting" menu, typically located in the top-left corner of the interface. This menu provides options to update the project title and select a new cover image for better organization and presentation.
  </Accordion>

  <Accordion title="If I create a project from someone else's template, will I be charged Credits?">
    No, creating a project from others' project is free. Credits are only deducted when you formally input a query and the AI executes a task (i.e., generates or modifies code).

    You are charged for the computational resources used by the AI Agent, not for simply copying a template. We also offer Credit Rewards for platform participation and task completion.
  </Accordion>
</AccordionGroup>

## Core Development & Features

<AccordionGroup>
  <Accordion title="How do I edit content (text, images, components) in my project?">
    Once YouWare generates your initial project, you have **three powerful ways** to refine and edit it:

    ### 1. Chat with AI (The Conversational Editor)

    The most powerful way to refine your project. Simply tell the AI what you want to change using natural language. The AI remembers the context of your entire project and can execute complex changes instantly.

    **Examples:**

    * "Add a dark mode toggle to the header"
    * "Make the 'Submit' button more prominent and change its color to red"
    * "Connect this form to a new database table called UserFeedback"

    ### 2. Visual Editing (The No-Code Layer)

    For quick style tweaks and content changes. Click any element in the preview (e.g., a button, a text block, an image) and make direct visual adjustments without writing code. Perfect for rapid prototyping and design iterations.

    ### 3. Code Editor (The Developer's Playground)

    For deep customization with full access to your project's complete code:

    * **Browse Your Project Structure**: Explore all generated files directly inside the workspace
    * **Edit & Save Instantly (Subscribers)**: Make changes to any file with instant preview reflection
    * **Cleaner, Faster Workflow**: The redesigned interface makes development more intuitive

    <Tip>
      All three methods work seamlessly together, allowing you to choose the approach that best fits your workflow and expertise level.
    </Tip>
  </Accordion>

  <Accordion title="How do I create a landing page or a specific component?">
    Just prompt the AI with a clear description of what you need. Be specific!

    **Examples:**

    * "Create a product landing page for an AI-powered tool, using a clean, modern design."
    * "Add a sticky navigation bar with three links: Home, Features, and Pricing."
  </Accordion>

  <Accordion title="Does YouWare support full-stack development (backend and database)?">
    Yes! **YouBase** is YouWare's built-in backend infrastructure that provides everything you need for full-stack development:

    | Module                     | Description                                                    |
    | -------------------------- | -------------------------------------------------------------- |
    | **Users & Authentication** | Email login, Google OAuth, temporary accounts, user management |
    | **Database**               | Create tables, store and query data with simple prompts        |
    | **Storage**                | File uploads and media management                              |
    | **Secrets**                | Secure API key and configuration storage                       |

    ### How to Use

    YouBase is integrated into every YouWare project. Simply describe your backend needs to the Agent:

    * *"Add user login to my app"*
    * *"Create a database table for storing user feedback"*
    * *"Let users upload profile pictures"*

    ### Publishing

    One-click publishing makes your project live with a shareable URL instantly.

    <Card title="Learn more about YouBase" icon="arrow-right" href="/youbase/introduction">
      Explore the complete YouBase documentation for detailed guides on each module.
    </Card>
  </Accordion>

  <Accordion title="Can I integrate external APIs or libraries into my project?">
    <Warning>
      **Important Security Note**: If you integrate external APIs without using YouBase Secrets, there is a **risk of API key exposure** in your front-end code.
    </Warning>

    **YouBase Secrets**: Store your API keys securely in YouBase Secrets. They are never exposed in the front-end code.

    **Best Practice**: For sensitive API integrations, always use YouBase Secrets to store API keys securely, rather than exposing them in client-side code.
  </Accordion>

  <Accordion title="Can I view the code or download it?">
    Yes, code visibility and ownership are core to our professional ethos.

    **Viewing Code**: You can inspect the generated code at any time within the editor. Full transparency guaranteed.

    **Downloading Code**: This is a YouWare Pro exclusive feature, designed for professional users who need to integrate their work into external development tools or hosting platforms.

    <Warning>
      To protect community creators, code download is only available for projects you created from scratch (non-Remix projects).
    </Warning>
  </Accordion>
</AccordionGroup>

## Advanced Workflow & Troubleshooting

<AccordionGroup>
  <Accordion title="How do I write effective prompts to get the best results?">
    Think of the AI as a highly skilled, but literal, colleague. The key to great results is to be **Clear, Specific, and Contextual**.

    ### Golden Rules from Prompt Craft

    1. **Start with the Feeling, Not the Features**: Describe the *vibe* you want (e.g., "cozy, rainy-day bookstore" vs. "three-column layout")
    2. **Tell a Story**: Structure your site like chapters—Hook, Why, Proof, Invitation
    3. **Sculpt, Don't Command**: Treat prompting as a conversation. Refine piece by piece.

    **Examples:**

    * ❌ "Make a landing page for a fitness app"
    * ✅ "The vibe should be energetic and motivating, but not intimidating. Think bright colors, bold fonts, and a feeling of momentum."

    <Tip>
      Check out the [Prompt Craft](/prompting/prompting) guide for a complete masterclass on talking to AI like an art director, not a mechanic.
    </Tip>
  </Accordion>

  <Accordion title="What is the 'TabTab' feature?">
    TabTab is your efficiency booster. While you are typing a prompt, press the **Tab key** to trigger an AI-powered auto-complete suggestion. It helps you articulate complex commands faster and discover new ways to interact with the tool.
  </Accordion>

  <Accordion title="How do I debug or check what went wrong with my project?">
    As a professional tool, we encourage you to use standard web development diagnostics:

    * **Browser Console (F12)**: Press F12 to open your browser's developer console. This is your first line of defense to distinguish between client-side and platform-side errors
    * **Error Messages**: If the project fails to run, the system will provide a specific error message. Read it carefully and cross-reference with our documentation

          <img src="https://mintlify.s3.us-west-1.amazonaws.com/youware-18c86901/images/browser-console-debug.png" alt="Browser console showing debugging information for YouWare projects" />
  </Accordion>

  <Accordion title="What if I get a 500 error or a capacity limit message?">
    A **500 error** is typically a server-side issue. First, try refreshing the page or starting a new chat session.

    If the problem persists, please email us immediately at [**support@youware.com**](mailto:support@youware.com) with:

    1. The project link
    2. A screenshot of the error message (and the F12 console if possible)

    <Info>
      If you hit a capacity limit, it means our servers are temporarily under high load. We're scaling up rapidly! Please try again in a few minutes.
    </Info>
  </Accordion>
</AccordionGroup>

## YouBase — Backend & Full-Stack Development

<AccordionGroup>
  <Accordion title="What is YouBase and what does it provide?">
    **YouBase** is YouWare's built-in backend infrastructure. It provides four core modules:

    * **Users & Authentication**: Email login, Google OAuth, temporary accounts, and user management
    * **Database**: Create tables, store data, and query records with simple prompts
    * **Storage**: Upload and manage files (images, documents, media)
    * **Secrets**: Securely store API keys and sensitive configuration

    <Info>
      YouBase is a unified, self-developed solution—auth + database + storage + secrets all working together seamlessly. No external services required.
    </Info>
  </Accordion>

  <Accordion title="How do I build apps with databases and user authentication?">
    Simply describe your needs to the Agent. YouBase handles the implementation automatically.

    **Example prompts:**

    * *"Add user login with email and Google"*
    * *"Create a database table for blog posts with title, content, and author"*
    * *"Let users upload profile pictures"*
    * *"Store my OpenAI API key securely"*

    **Example:** Create a voting app by describing: *"Create a voting app with user login. Store poll options and vote counts in the database. Show real-time results."*
  </Accordion>

  <Accordion title="Can I use Supabase or other external databases?">
    Yes! While YouBase is the recommended default (zero configuration, works instantly), you can also connect **Supabase** via MCP by providing valid access keys and describing your data goals to the Agent.

    **Recommendation:** Use YouBase for most projects—it's simpler and fully integrated. Use Supabase if you need specific features or prefer external control.
  </Accordion>

  <Accordion title="What real-world projects can I build with YouBase?">
    <Tabs>
      <Tab title="Voting Systems">
        Build real-time polls where results update instantly. Store vote counts and voter IDs, automatically calculate percentages.
      </Tab>

      <Tab title="Leaderboards">
        Create competitive scoreboards with automatic ranking calculations. Display real player names from user accounts.
      </Tab>

      <Tab title="Comment Threads">
        Add comment sections with persistent storage. Show real user profiles instead of "Anonymous User."
      </Tab>

      <Tab title="Quiz Platforms">
        Store quiz questions, user answers, and scores. Track progress across sessions.
      </Tab>

      <Tab title="Member-only Apps">
        Member-only areas with personalized experiences. Store user preferences and history.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="How much does YouBase cost?">
    YouBase uses your regular Credits. The cost depends on your usage:

    * **Database reads/writes**: Small credit cost per operation
    * **Storage**: Credits for file storage
    * **Authentication**: Included with database operations

    You get a generous free tier to start building before any costs apply.
  </Accordion>
</AccordionGroup>

## Integrations & External Services

<AccordionGroup>
  <Accordion title="What are MCP Tools and how do I use them?">
    **MCP Tools** are like apps for your website. Install one, and your project connects to services you already use—ChatGPT, Figma, Notion, GitHub, and more.

    **To add an integration:**

    1. Click the **MCP icon** in the sidebar
    2. Browse available tools (Figma, Notion, GitHub, etc.)
    3. Enable the tools you want
    4. Describe what you need in natural language

    **Examples:**

    * "Pull my latest Notion pages and display them here"
    * "Convert my Figma design into a live webpage"
    * "Connect to ChatGPT for real-time conversations"
  </Accordion>

  <Accordion title="How do I integrate AI models into my website (chatbots, image generators)?">
    <Warning>
      **AI API is no longer available for new projects.** Projects created after the YouBase launch (December 16, 2025) cannot enable AI API. Existing projects using AI API will continue to work normally.
    </Warning>

    For new projects, use **YouBase Secrets** to securely store your own API keys (OpenAI, Anthropic, etc.) and call AI models from your backend code.

    <Card title="Learn about YouBase Secrets" icon="key" href="/youbase/secrets">
      Store API keys securely and integrate AI models in new projects.
    </Card>
  </Accordion>

  <Accordion title="Can I connect my GitHub repository to YouWare?">
    Yes! The **GitHub Integration** allows you to:

    * Connect to your GitHub project for automatic backup and history tracking
    * Let the AI read your existing code to understand your style and project structure
    * Generate code that perfectly matches your existing work
    * Enable team collaboration with code reviews and task tracking

    **Setup:** Generate a GitHub Personal Access Token, add the integration, and the AI will understand your entire project context.
  </Accordion>

  <Accordion title="What happens if I integrate an external API without using YouBase Secrets?">
    <Warning>
      **Security Risk**: API keys exposed in front-end code can be compromised.
    </Warning>

    **Best Practice**: Always use **YouBase Secrets** to store API keys securely. This keeps sensitive credentials safe and prevents exposure in client-side code.
  </Accordion>
</AccordionGroup>

## AI Models & Optimization

<AccordionGroup>
  <Accordion title="Which AI model should I use for my task?">
    YouWare integrates **5 top AI models**. Here's how to choose:

    | Task                  | Recommended Model | Why                                   |
    | --------------------- | ----------------- | ------------------------------------- |
    | **Complex reasoning** | OpenAI O3 Pro     | Deep thinking for hard problems       |
    | **General tasks**     | OpenAI GPT-4o     | Reliable, versatile workhorse         |
    | **Creative writing**  | Claude Sonnet 4.5 | Excellent for copywriting and content |
    | **Technical Q\&A**    | Gemini 2.5 Pro    | Structured thinking for precision     |
    | **Budget-conscious**  | DeepSeek V3       | Cost-effective all-rounder            |
    | **Speed matters**     | Claude Haiku 3.5  | Ultra-fast, low-cost                  |

    <Tip>
      **Pro tip:** Switch models mid-project. Use a cheap, fast model for drafts, then switch to a powerful model for final quality checks.
    </Tip>
  </Accordion>

  <Accordion title="How do I switch between AI models?">
    <Steps>
      <Step title="Open Model Selector">
        Click the current model name (bottom-right of input box)
      </Step>

      <Step title="Review Options">
        Hover over each model to see speed, cost, intelligence, and context window
      </Step>

      <Step title="Select & Confirm">
        Click your choice and confirm. Switching takes \~3 seconds.
      </Step>
    </Steps>

    Each model card shows:

    * **Speed & Intelligence ratings** (5-panel comparison)
    * **Cost tier** (Low, Standard, Max)
    * **Context capacity** (token limits)
    * **Feature support** (Web Search, MCP, Vision)
  </Accordion>

  <Accordion title="What's the difference between image generation models?">
    | Model               | Best For                          | Quality  | Speed  | Cost     |
    | ------------------- | --------------------------------- | -------- | ------ | -------- |
    | **Midjourney**      | Professional art, diverse styles  | High     | Medium | Standard |
    | **GPT-Image-1**     | Product visuals, polished designs | High     | Medium | Standard |
    | **Gemini Imagen 4** | Clear text rendering, consistency | High     | Medium | Standard |
    | **Flux AI**         | Fast turnaround, basic needs      | Standard | Fast   | Low      |

    **Pro tip:** Use Flux for quick drafts, Midjourney for artistic work, GPT-Image-1 for product mockups.
  </Accordion>
</AccordionGroup>

## Editing & Creation Tools

<AccordionGroup>
  <Accordion title="What's the fastest way to make small design changes?">
    **Visual Editing** is perfect for rapid tweaks. Instead of describing changes to AI:

    1. Click the **Edit** button
    2. Click any element on screen
    3. Adjust text, colors, spacing visually
    4. Changes apply instantly

    **Benefits:**

    * Instant results (no waiting for AI)
    * Minimal credit cost
    * Pixel-perfect control

    Use Visual Editing for style tweaks, then use AI Chat for major structural changes.
  </Accordion>

  <Accordion title="How does Tab Tab Prompt Completion work?">
    **Tab Tab** is YouWare's intelligent autocomplete for your input field:

    * **Type** your prompt and Tab Tab analyzes your input in real-time
    * **Press Tab** to accept AI-suggested completions
    * **Keep typing** if the suggestion isn't right—it adjusts instantly

    **Benefits:**

    * Type faster with smart predictions
    * Discover new ways to phrase commands
    * Stay in creative flow without pausing

    <Tip>
      Tab Tab learns from your project context. The more you build, the smarter the suggestions become.
    </Tip>
  </Accordion>

  <Accordion title="How do I undo or rewind changes to my project?">
    Use **History** to jump back to any previous version:

    <Steps>
      <Step title="Open History">
        Click the **History icon** (clock) in the top toolbar
      </Step>

      <Step title="Browse Versions">
        See your project timeline with descriptions and timestamps
      </Step>

      <Step title="Preview">
        Click any version to preview it instantly
      </Step>

      <Step title="Restore">
        Found the right version? Click **Restore this version**
      </Step>
    </Steps>

    <Warning>
      **Important:** Restoring is permanent. All versions after the restored point are lost forever. Preview carefully before restoring.
    </Warning>

    <Tip>
      History doesn't refund Credits. If you want Credits back, use [Credit Care](/introduction/youware-credit-care) instead.
    </Tip>
  </Accordion>

  <Accordion title="What is Credit Care and how does it work?">
    **Credit Care** is your safety net for AI experiments:

    * **Monthly Credit Restores**: Get chances to rewind failed attempts and recover Credits
    * **Free Plan**: 1 restore/month
    * **Pro Plan**: 30 restores/month
    * **Ultra Plan**: 100 restores/month

    **How to use:**

    1. Click **Rewind to previous version** on your commit
    2. Select **Rewind & refund credits**
    3. Credits return instantly to your balance

    **Key difference from History:**

    * **History**: Rewind project, no Credit refund
    * **Credit Care**: Rewind project AND get Credits back

    <Info>
      Zero-cost commits (manual code edits, UI tweaks) don't count toward your monthly limit—rewind those freely!
    </Info>
  </Accordion>

  <Accordion title="How does the Boost feature work?">
    **Boost** automatically analyzes and optimizes your page with one click. The AI examines:

    * **Page Structure**: Layout and visual hierarchy
    * **Content Quality**: Text clarity and information flow
    * **User Experience**: Interface and interactions

    Then it enhances your page while preserving your original design intent. No prompts needed—it's fully automated.

    <Tip>
      Use Boost when your page feels rough but you're not sure what needs improvement.
    </Tip>
  </Accordion>

  <Accordion title="Can I edit code directly in my project?">
    **Yes!** Use **Code Editor** to:

    * Browse your complete project structure (HTML, CSS, JavaScript, JSON, etc.)
    * View code (all users)
    * Edit and save instantly (subscribers only)
    * See real-time updates in preview

    **Pro tip:** Mix manual code edits with AI changes. The AI remembers your manual edits and considers them in future modifications.
  </Accordion>

  <Accordion title="What's the difference between remix and create?">
    |                    | **Create**                     | **Remix**                         |
    | ------------------ | ------------------------------ | --------------------------------- |
    | **Starting point** | Blank canvas or template       | Existing public project           |
    | **Cost**           | Full credits for new code      | Lower credits (reuses structure)  |
    | **Use case**       | Original ideas                 | Modify existing work              |
    | **Speed**          | Longer (building from scratch) | Faster (changing existing design) |
    | **Can download?**  | Yes (Pro only)                 | No (protects original creator)    |

    **Pro tip:** Remix to learn from existing projects or to save credits on variations.
  </Accordion>
</AccordionGroup>

## Cross-Platform & Sharing

<AccordionGroup>
  <Accordion title="Can I build projects on my phone?">
    **Yes!** The **YouWare Mobile App** lets you:

    * Create new projects with voice or text prompts
    * Edit code and design (Code Editor + Visual Editing)
    * Get push notifications when tasks complete
    * Sync seamlessly with desktop

    **Download:** Search "YouWare" in App Store (iOS) or Google Play (Android)

    **Key features:**

    * Voice input for hands-free creation
    * Background task notifications
    * Real-time cross-device sync
  </Accordion>

  <Accordion title="How do I share and publish my project?">
    <Steps>
      <Step title="Click Publish">
        Click the **Publish** button in top-right corner
      </Step>

      <Step title="Get Share Link">
        Click **Share** to generate a shareable link
      </Step>

      <Step title="Control Access">
        Optional: Make private (add password) or disable remix
      </Step>
    </Steps>

    **Share modes:**

    * **Standard link**: Shows project + YouWare header + description
    * **Fullscreen link**: Shows only your project (for demos, embedding, portfolios)

    **Privacy options:**

    * **Public**: Anyone with link can access and remix
    * **Private**: Requires password to view
    * **No remix**: Others can view but not copy
  </Accordion>

  <Accordion title="Can others remix my project after I share it?">
    **By default, yes.** Others can:

    * Create a complete independent copy
    * Modify it with natural language prompts
    * Publish their own remixed version

    **To prevent remixing:** Go to Share Settings and toggle **Remix Permissions: Off**. Your project becomes read-only.

    **Note:** Code downloads are only allowed for projects created from scratch (non-Remix projects) and only for Pro subscribers.
  </Accordion>
</AccordionGroup>

## Tech Stack & Developer Tools

<AccordionGroup>
  <Accordion title="What's the difference between React and HTML modes?">
    **YouWare uses React as the default for 0-1 creation.** Here's why:

    ### Why React by Default?

    * **Better Results**: React's component architecture helps AI generate more organized, maintainable code
    * **Modern Stack**: Industry-standard framework used by professional developers
    * **Dynamic Features**: State management and interactivity work seamlessly out of the box
    * **Reusable Components**: Easier to iterate and scale your project

    ### When to Use Each Mode

    |                    | **React Mode (Default)**                  | **HTML Mode**                      |
    | ------------------ | ----------------------------------------- | ---------------------------------- |
    | **Best for**       | Full apps, dashboards, interactive sites  | Simple landing pages, static sites |
    | **AI Performance** | Better structure, cleaner code generation | Straightforward, minimal setup     |
    | **Switching**      | Default for new projects                  | Type `/html_mode` to switch        |
    | **Learning curve** | Modern framework (AI handles complexity)  | Simpler, traditional approach      |

    <Info>
      **Good news:** You don't need to know React to use YouWare! The AI handles all the technical details. Just describe what you want in plain language.
    </Info>

    **Pro tip:** Stick with React for most projects—the AI generates better results. Only switch to HTML if you specifically need a minimal static site.
  </Accordion>
</AccordionGroup>

## Planning & Optimization Tools

<AccordionGroup>
  <Accordion title="What is Plan Mode and when should I use it?">
    **Plan Mode** (`/plan`) is for organizing ideas *before* execution. It lets you:

    1. **Outline your vision**: Describe what you want to build
    2. **Organize steps**: Break complex projects into manageable phases
    3. **Get structured planning**: The AI helps you think through your approach
    4. **Then build**: Once your plan is solid, execute step by step

    **Best uses:**

    * Complex multi-step projects (e-commerce sites, dashboards)
    * Team collaboration (align on approach before coding)
    * Exploratory phases (brainstorm without committing to execution)

    **Benefit:** Lightweight planning prevents wasted edits and keeps early brainstorming efficient.
  </Accordion>

  <Accordion title="Can I stop a generation or task that's running?">
    **Yes!** The **Stop button** lets you:

    * Interrupt ongoing generation immediately
    * Save time and Credits
    * Maintain full control of your workflow

    Just click the **Stop** button during any active task. This is especially useful if you realize mid-generation that you want to change direction or if a task is taking longer than expected.
  </Accordion>
</AccordionGroup>

## Creator Economy & Growth

<AccordionGroup>
  <Accordion title="How can I earn Credits by sharing projects?">
    **Credit Rewards** let you earn through community participation:

    * **Share Projects**: Earn Credits when others engage with your shared work
    * **Invite Friends**: Receive Credits when people join YouWare through your referral
    * **Community Engagement**: Participate in challenges and events for bonus Credits

    Credits earned can be used immediately for:

    * Generating new projects
    * Running AI tasks
    * Accessing premium features

    <Tip>
      Every share and invite builds your creator reputation while directly supporting your creative work.
    </Tip>
  </Accordion>

  <Accordion title="What is the Affiliate Program and how do I join?">
    The **Affiliate Program** lets creators earn by referring others to YouWare:

    **How it works:**

    * Share your unique referral link with your audience
    * Earn rewards when people sign up through your link
    * Track performance in the affiliate dashboard
    * Access marketing materials and resources

    **Who should join:**

    * Content creators and influencers
    * Developers and educators
    * Community leaders
    * Anyone with an engaged audience

    Visit the Affiliate Program landing page for detailed information and signup.
  </Accordion>

  <Accordion title="What is Creator Studio and who should use it?">
    **Creator Studio** is for creators who want to monetize and analyze their work:

    **What you get:**

    * **Performance Dashboard**: View engagement metrics for published projects
    * **Revenue Tracking**: See income generated from your projects
    * **Analytics**: Understand which projects perform best
    * **Withdrawals**: Earn and withdraw revenue directly

    **Who qualifies:**

    * Creators publishing projects to the platform
    * Users with publicly shared work
    * Contributors to the YouWare ecosystem

    **Access:** Reach out to support if you meet these criteria and want Creator Studio enabled on your account.
  </Accordion>

  <Accordion title="What's the Creator Badge and how do I get one?">
    The **Creator Badge** shows on your profile and project pages. There are two types:

    1. **Founding Creator**: For early YouWare community members who helped shape the platform
    2. **Verified Creator**: Available as you build reputation and engagement

    **Benefits:**

    * Establishes credibility and recognition
    * Increases visibility of your projects
    * Shows community trust and participation

    Badges are awarded based on your activity and contributions to the YouWare community.
  </Accordion>
</AccordionGroup>

## Account, Billing, and Community

<AccordionGroup>
  <Accordion title="What are the differences between the Free and Pro versions?">
    The **Free version** provides full access to YouWare's core functionality—enough for you to explore, learn, and create smaller projects.

    **YouWare Pro** is designed for power users and professionals. It unlocks:

    * Code Download (for professional workflow integration)
    * Larger Storage & Faster Processing
    * Exclusive Templates & Project Recommendations
    * Priority Technical Support

    You can decide to upgrade based on your usage frequency and need for advanced features.
  </Accordion>

  <Accordion title="Can I get a refund?">
    We offer two options:

    1. **Cancel Auto-Renewal**: Go to your Profile → Pro → Manage Subscription to prevent future charges
    2. **Request a Refund**: Email your reason and account email to [support@youware.com](mailto:support@youware.com)
  </Accordion>

  <Accordion title="What if I accidentally delete my project? Can it be recovered?">
    <Warning>
      We urge you to double-check before confirming any deletion. Currently, deleted projects **cannot be recovered**.
    </Warning>

    We are working on adding a robust version history and recovery feature, but for now, please be careful!
  </Accordion>

  <Accordion title="Where can I find help or interact with the YouWare community?">
    We believe in a vibrant, supportive community. You can find help and connect with others through:

    * **YouWare Help Center** (FAQ & Docs)
    * [**Community Forum**](https://discord.com/invite/6fBAZ2tzfK): Ask questions, share knowledge, and collaborate
    * **Direct Support**: Contact our customer support team for technical issues
  </Accordion>
</AccordionGroup>
