> ## Documentation Index
> Fetch the complete documentation index at: https://statsig-4b2ff144-devin-1763168466-llm-docs-audit.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Sample Apps

> Explore sample applications built with Statsig to see real-world use cases and implementation examples.

export const ChatBar = () => {
  const chatBarRef = useRef(null);
  useEffect(() => {
    const script = document.createElement("script");
    script.src = "https://cdn.jsdelivr.net/npm/@sampleapp.ai/sdk@latest/dist/index.standalone.umd.js";
    script.onload = () => {
      if (window.SampleAppStandalone && chatBarRef.current) {
        window.SampleAppStandalone.ChatBar({
          placeholder: "Ask me anything...",
          height: "auto",
          playgroundUid: "statsig",
          typingTexts: ["How do I use statsig?", "What is statsig?", "Build with statsig"]
        }, chatBarRef.current);
      }
    };
    document.head.appendChild(script);
    return () => {
      script.remove();
    };
  }, []);
  return <div ref={chatBarRef} className="w-full"></div>;
};

<div
  style={{
textAlign: "center",
margin: "2rem 0 2rem 0", // Adjust margin to avoid extra spacing
position: "relative",
zIndex: 1, // Lower z-index by default
}}
>
  <ChatBar placeholder="What would you like to build..." playgroundUid="statsig" />
</div>

<div
  style={{
display: "grid",
gridTemplateColumns: "repeat(auto-fit, minmax(300px, 1fr))",
gap: "1.5rem",
}}
>
  <Card title="TaskMaster Pro — Experimentation in Action" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/taskmaster.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=1bbb32596217ee0396623df1b4394c2b" href="https://statsig.sampleapp.ai/share/zBrBQANriSlxaDy1VU-3j" width="1920" height="1080" data-path="images/sample-apps/taskmaster.png" />

  <Card title="ContentPulse — Smarter Marketing with Statsig Experiments" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/marketing-tips.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=0052b929592da07ba847552742b49594" href="https://statsig.sampleapp.ai/share/RYOtIEcwyiC0eisSiDqZR" width="1920" height="1080" data-path="images/sample-apps/marketing-tips.png" />

  <Card title="ShopSmart — Feature Gates for Personalized E-Commerce" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/irMbAnbt5SZMvu00/images/sample-apps/tech-e-comm.png?fit=max&auto=format&n=irMbAnbt5SZMvu00&q=85&s=8edf415f557e9b668ea77f6499b99ff4" href="https://statsig.sampleapp.ai/share/St0bryK_ih8NvCbNVxfm4" width="1920" height="1080" data-path="images/sample-apps/tech-e-comm.png" />

  <Card title="StreamWise — Recommendation Engine Powered by Experiments" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/social-stream.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=efb1bbd19204dabad6ba51739094dd35" href="https://statsig.sampleapp.ai/share/W7b27kGUNeyqU80g85uDE" width="1920" height="1080" data-path="images/sample-apps/social-stream.png" />

  <Card title="FinSight — Banking Analytics with Statsig Metrics" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/banking.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=4a83c674061ba59f404555b756aa5bb2" href="https://statsig.sampleapp.ai/share/ZDjbSTm5WIqXMfqck536u" width="1920" height="1080" data-path="images/sample-apps/banking.png" />

  <Card title="MediConnect — Testing UX Improvements in Healthcare" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/healthcare.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=8591b7630d3129f516c740fa057805d6" href="https://statsig.sampleapp.ai/share/6xJNjOhdibsLL2J35X7xL" width="1920" height="1080" data-path="images/sample-apps/healthcare.png" />

  <Card title="EventScope — Event Logging & Tracking in Action" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/snake.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=c1e26eb60b4668dd9d6122eaa147e738" href="https://statsig.sampleapp.ai/share/ZMpNCj-5c2v3MCOgV99H0" width="1920" height="1080" data-path="images/sample-apps/snake.png" />

  <Card title="BuyNow+ — Driving Conversions through Statsig Experiments" img="https://mintcdn.com/statsig-4b2ff144-devin-1763168466-llm-docs-audit/XrcOHjTOHV2Chsde/images/sample-apps/buy-now-experiment.png?fit=max&auto=format&n=XrcOHjTOHV2Chsde&q=85&s=e6da39b613f5ebbfc3ea0bfc761523af" href="https://statsig.sampleapp.ai/share/9uXb7yq2eJM4KWRkiuHj1" width="1920" height="1080" data-path="images/sample-apps/buy-now-experiment.png" />
</div>
