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

# FAQs

**We're Getting Better Every Day! Sorry for any mistakes.** You can contact our [Support Team](mailto:support@zeroagent.io) for more information

<Accordion title="Shopify Store Connection Issues">
  Having trouble? Try these steps:

  * Add the store again and try connecting again.
  * If connection fails after adding store, notification will be shown on the console. Try connecting again.
</Accordion>

<Accordion title="Troubleshooting: Chat Widget Not Displaying">
  * Verify App Credentials: Ensure your App ID and App Key are accurate and correctly entered.
  * Check Browser Console: Inspect the browser console for error messages that may indicate the issue.
  * Still Need Help?: Reach out to our dedicated [Support Team](mailto:support@zeroagent.io) for further assistance.
</Accordion>

<Accordion title="SDK Not supporting the application">
  We currently support a limited number of applications, but we're working to add more soon. In the meantime, our [Support Team](mailto:support@zeroagent.io) is here to help.
</Accordion>

<Accordion title="Troubleshooting: Error adding Zeroagent in Next JS">
  If you encounter issues regarding `async/await is not yet supported in Client Components, only Server Components` please use below method.

  ```js app/layout.tsx theme={null}
  import Script from "next/script"; 

  export default function RootLayout({
    children,
  }: Readonly<{
    children: React.ReactNode;
  }>) {

        return (
      <html lang="en" className="">
        <head>
          {/* Widget Element */}
          <Script
          src="https://cdn.jsdelivr.net/npm/@zeroagent/js@latest/dist/index.js" 
          async
          strategy="beforeInteractive"
        ></Script>
        <Script
            id="zeroagent-init"
            strategy="afterInteractive"
            dangerouslySetInnerHTML={{
              __html: `
                Zeroagent('d9a5be9969274c95b998a611949ec46e', 'kwT5hBdZGr_RykXJTRscOvXBx93QGVoRJfz-EzhZLdo');
              `,
            }}          
          />

        </head>
        <body
          className={`${geistSans.variable} ${geistMono.variable} antialiased`}
        >
          {children}
          
          {/* Widget Element */}
        <div id="zeroagent-ai-widget"></div>
        </body> 
      </html>
    );
  }
  ```
</Accordion>
