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

# Explore Money Flows

> Interactive visualization of OMS payment flows and transaction routing.

export const AppEmbed = () => {
  const [top, setTop] = React.useState("5.5rem");
  const [dark, setDark] = React.useState(false);
  React.useEffect(() => {
    const updateNav = () => {
      const navbar = document.getElementById("navbar");
      if (navbar) {
        const h = navbar.getBoundingClientRect().bottom;
        if (h > 0) setTop(`${h}px`);
      }
    };
    updateNav();
    window.addEventListener("resize", updateNav);
    const updateDark = () => setDark(document.documentElement.classList.contains("dark"));
    updateDark();
    const obs = new MutationObserver(updateDark);
    obs.observe(document.documentElement, {
      attributes: true,
      attributeFilter: ["class"]
    });
    return () => {
      window.removeEventListener("resize", updateNav);
      obs.disconnect();
    };
  }, []);
  return <div style={{
    position: "fixed",
    top,
    left: 0,
    right: 0,
    bottom: 0,
    zIndex: 9999,
    overflow: "hidden",
    background: dark ? "#0F0F10" : "#fff"
  }} dangerouslySetInnerHTML={{
    __html: '<iframe src="https://flow-oms-app-production.up.railway.app/" style="width:100%;height:100%;border:none;display:block;" allowfullscreen></iframe>'
  }} />;
};

<AppEmbed />
