import * as React from "react"; import { Helmet } from "react-helmet"; import { Trans } from "react-i18next"; import Heading from "~/components/Heading"; import Scene from "~/components/Scene"; import Text from "~/components/Text"; import ZapierIcon from "~/components/ZapierIcon"; import useStores from "~/hooks/useStores"; function Zapier() { const { ui } = useStores(); const { resolvedTheme } = ui; return ( }> Zapier Zapier is a platform that allows Outline to easily integrate with thousands of other business tools. Automate your workflows, sync data, and more.
); } export default Zapier;