<!DOCTYPE html><html lang="en-US"><head><meta charSet="UTF-8"/><meta name="insight-app-sec-validation" content="769e7b8b-6e3d-416b-ada5-f10bac0c74cf"/><meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/><meta name="theme-color" content="#fbf7f5"/><meta name="msapplication-config" content="none"/><meta name="msapplication-navbutton-color" content="#fbf7f5"/><meta name="msapplication-TileColor" content="#fbf7f5"/><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="mobile-web-app-capable" content="yes"/><meta name="slack-app-id" content="A0133KXMHNE"/><script type="text/javascript" nonce="9e10f5f613214bce8fc9204893cabc52">
        var modernBrowser = (
          'fetch' in window &&
          'assign' in Object
        );

        if ( !modernBrowser ) {
          var scriptElement = document.createElement('script');

          scriptElement.async = false;
          scriptElement.src = 'https://cdn.coda.io/assets/polyfill.39a8c4e303e5a2e1b59a.entry.js';
          document.head.appendChild(scriptElement);
        }
      </script><link rel="icon" type="image/png" sizes="32x32" href="https://cdn.coda.io/icons/png/color/coda-32.png"/><link rel="icon" type="image/png" sizes="192x192" href="https://cdn.coda.io/icons/png/color/coda-192.png"/><link rel="apple-touch-icon" type="image/png" sizes="120x120" href="https://cdn.coda.io/icons/png/color/coda-apple-120.png"/><link rel="apple-touch-icon" type="image/png" sizes="152x152" href="https://cdn.coda.io/icons/png/color/coda-apple-152.png"/><link rel="apple-touch-icon" type="image/png" sizes="167x167" href="https://cdn.coda.io/icons/png/color/coda-apple-167.png"/><link rel="apple-touch-icon" type="image/png" sizes="180x180" href="https://cdn.coda.io/icons/png/color/coda-apple-180.png"/><meta name="msapplication-square70x70logo" content="https://cdn.coda.io/icons/png/color/coda-128.png"/><meta name="msapplication-square150x150logo" content="https://cdn.coda.io/icons/png/color/coda-270.png"/><meta name="msapplication-TileImage" content="https://cdn.coda.io/icons/png/color/coda-270.png"/><link rel="preload" href="https://cdn.coda.io/fonts/calibre-bold.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/Inter/3.19/Inter-SemiBold.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/Inter/3.19/Inter-Regular.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/TiemposHeadline-Light.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/Calibre-R-Light.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/Calibre-R-Medium.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/Calibre-R-Semibold.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/fonts/Calibre-R-Bold.woff2" as="font" type="font/woff2" crossorigin="anonymous"/><link rel="stylesheet" href="https://cdn.coda.io/assets/external-cms.2aa1a94c304cc52192ee.css" crossorigin="anonymous"/><link rel="preload" href="https://cdn.coda.io/assets/external-cms.c0f2cbdeba5e5ca5487c.entry.js" as="script" nonce="9e10f5f613214bce8fc9204893cabc52" crossorigin="anonymous"/><script type="text/javascript" nonce="9e10f5f613214bce8fc9204893cabc52">
        window.addEventListener('load', () => {
          for (pt of [{"href":"https://cdn.coda.io/assets/browser.71ed9950b202adefe870.css","as":"style"},{"href":"https://cdn.coda.io/assets/browser.ce8f7ddcabec7bc22df9.entry.js","as":"script"},{"href":"https://cdn.coda.io/assets/webworker.5cf1ab43707a03538556.entry.js","as":"script"},{"href":"https://cdn.coda.io/assets/prerender.64ac3144c8d5c9777fdd.entry.js","as":"script"}]) {
            const link = document.createElement('link');
            link.rel = 'prefetch';
            link.crossorigin = 'anonymous';
            link.href = pt.href;
            link.as = pt.as;
            document.head.appendChild(link);
          }
        });
      </script><script type="text/javascript" nonce="9e10f5f613214bce8fc9204893cabc52">
      (async function() {
        window.appInstanceId = crypto && crypto.randomUUID ? crypto.randomUUID() : '';

        let success;
        let failure;
        window.preferencesLoaded = new Promise((resolve, reject) => {
          success = resolve;
          failure = reject;
        });

        try {
          const docId = '';
          const fetchParams = {
            headers: {
              'Accept': 'application/json'
            }
          };
          const [userPreferencesResponse, docUserResponse] = await Promise.all([
            docId
              ? fetch(`/api/document/${docId}/userPreferences`, fetchParams)
              : fetch(`/api/userPreferences`, fetchParams),
            docId ? fetch(`/api/document/${docId}?docUserOnly=true`, fetchParams) : undefined,
          ]);

          if (!userPreferencesResponse.ok) {
            throw new Error('Unable to fetch user preferences');
          }

          const {trackingConsent, loggedIn, user, workspaceId, isNonPersonalDomain, intercomHmac} = await userPreferencesResponse.json();
          window.codaUser = window.codaUser || user;
          window.trackingConsent = trackingConsent;
          window.isNonPersonalDomain = isNonPersonalDomain;
          window.intercomHmac = intercomHmac;
          

          // for sending hotjar events
          // https://help.hotjar.com/hc/en-us/articles/4405109971095
          window.hj=window.hj||function(){(hj.q=hj.q||[]).push(arguments)};

          if (docUserResponse) {
            if (!docUserResponse.ok) {
              throw new Error('Unable to fetch doc metadata');
            }

            const {docUser} = await docUserResponse.json();
            window.docUser = docUser;
          }

          if (window.localStorage.getItem('krDeviceUserSetting:DarkModeState') === null &&
              window.codaUser?.settings?.DARK_MODE_STATE?.value) {
            window.localStorage.setItem('krDeviceUserSetting:DarkModeState', JSON.stringify(window.codaUser?.settings?.DARK_MODE_STATE?.value));
            if (typeof updateDarkModeState === 'function') {
              updateDarkModeState(window.codaUser?.settings?.DARK_MODE_STATE?.value);
            }
          }

          const {advertisingAllowed, analyticsAllowed, publisherAnalyticsAllowed} = trackingConsent;
          window.dataLayer = [{
            advertisingNotAllowed: Boolean(!advertisingAllowed).toString(),
            loggedIn: loggedIn.toString(),
            useMarketo: false.toString(),
            useHotjar: true.toString(),
          }];

          if (analyticsAllowed) {
            (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
              new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
              j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
              'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
              })(window,document,'script','dataLayer','GTM-K32GRXP');
          }

          if (publisherAnalyticsAllowed) {
            
          }

          
          window.preferencesLoadedComplete = true;
          function sendLoggingEvent(method, docId, data) {
      if (!window.trackingConsent?.analyticsAllowed) {
        return;
      }
      const {pathname, search, hash} = window.location;
      const urlPath = [pathname, search, hash].join('');
      const session = localStorage.getItem('kr-app-session');
      const body = {
        createdAt: Date.now(),
        truncationStart: null,
        truncationEnd: null,
        docId,
        urlPath,
        buildHash: '754470f9812e',
        sessionId: session && JSON.parse(session).id,
        appInstanceId: window.appInstanceId,
        event: [{
            source: 'event',
            method: method,
            clientCreatedAt: Date.now(),
            context: {docId, urlPath},
            data,
        }],
      };

      const url = 'https://origin.coda.io/logging//event';
      const blob = new Blob([JSON.stringify(body)], {type: 'application/json'});
      try {
        const sendBeacon = navigator.sendBeacon.bind(navigator);
        return sendBeacon(url, blob);
      } catch (e) {
        return false;
      }
    }
    function sendNavigate(docId, sanityMetadata) {
    const perfTiming = window.performance.timing;
    const navStart = perfTiming.navigationStart;
    timing = {
      requestStart: perfTiming.requestStart - navStart,
      responseEnd: perfTiming.responseEnd - navStart,
      domInteractive: perfTiming.domInteractive - navStart,
      domComplete: perfTiming.domComplete - navStart,
    };
  
      const noIndex = document.querySelector("meta[name='robots']")?.getAttribute("content")?.toLowerCase()?.includes('noindex');
      navigateData = {
        href: window.location?.href,
        previousHref: window.document?.referrer,
        soft: false,
        userAgent: window.navigator?.userAgent,
        timing,
        sanityMetadata,
        indexed: !noIndex,
      };
      if (window.docCategoryIds) {
        navigateData.docCategoryIds = window.docCategoryIds;
      }
  
      try {
        navigateData.eventId = crypto.randomUUID();
      } catch (e) {
      }
      if (sendLoggingEvent('navigate', docId, navigateData)) {
        window.initialNavigateEventSent = true;
      }
    }
    
    let lcp;
    let lcpObserver;

    function updateLCP(entry) {
      if (window.firstHiddenTime === undefined || entry.startTime < window.firstHiddenTime) {
        lcp = entry;
      }
    }
  
    function cleanupLcpObserver() {
      try {
        removeEventListener('visibilitychange', flushLCP, true);
        removeEventListener('keydown', flushLCP, true);
        removeEventListener('click', flushLCP, true);
        removeEventListener('scroll', flushLCP, true);

        if (lcpObserver) {
          for (const entry of lcpObserver.takeRecords()) {
            updateLCP(entry);
          }
          lcpObserver.disconnect();
          lcpObserver = undefined;
        }
      } catch (e) {}
    }
  
    function flushLCP() {
      try {
        cleanupLcpObserver();

        if (lcp) {
          const dataPayload = {
            largestContentfulPaint: lcp.startTime,
            largestContentfulPaintSize: lcp.size,
            largestContentfulPaintId: lcp.id,
            largestContentfulPaintUrl: lcp.url,
            windowWidth: window.innerWidth,
            devicePixelRatio: window.devicePixelRatio,
            coverImageRenderedWidth: window.coverImageRenderedWidth,
            coverImageRenderedHeight: window.coverImageRenderedHeight,
            htmlIsCached: window.htmlIsCached,
          };
          let lcpEvent = {
            dataPayload,
            eventType: 'LargestContentfulPaint',
            schemaVersion: window.documentInitContext?.schemaVersion || -1,
            prerendered: window.prerendered,
            ...(true) && {sanityMetadata: {"sanityPageId":"a0628dc1-6e39-4f50-93e0-617626db9570","sanitySlug":"for/startups","sanityPageRev":"g64pjnSZ7Hl1FTIxzOvCQN"}},
          };
          try {
            lcpEvent.eventId = crypto.randomUUID();
          } catch (e) {
          }
          sendLoggingEvent('uiClientPerfMetric', "", lcpEvent);

          lcp = undefined;
        }
      } catch (e) {
      }
    }
  function trackLCP() {
      try {
        lcpObserver = new PerformanceObserver((entryList, _po) => {
          for (const entry of entryList.getEntries()) {
            updateLCP(entry);
          }
        });

        lcpObserver.observe({
          type: 'largest-contentful-paint',
          buffered: true,
        });

        addEventListener('visibilitychange', flushLCP, true);
        addEventListener('keydown', flushLCP, true);
        addEventListener('click', flushLCP, true);
        addEventListener('scroll', flushLCP, true);
      } catch (e) {}
    }
  function isCached() {
      var cookies = document.cookie.split(';');
      while (cookies.length) {
        var cookie = cookies.pop();
        var separatorIndex = cookie.indexOf('=');
        separatorIndex = separatorIndex < 0 ? cookie.length : separatorIndex;
        var cookie_name = decodeURIComponent(cookie.slice(0, separatorIndex).replace(/^s+/, ''));
        if (cookie_name === 'is_page_cached') {
          var expDate = new Date(new Date().getTime() - 86400);
          document.cookie = 'is_page_cached=;expires=' + expDate.toUTCString();
          return true;
        }
      }
      return false;
    }
    
      (async() => {
        window.htmlIsCached = isCached();
        sendNavigate("", {"sanityPageId":"a0628dc1-6e39-4f50-93e0-617626db9570","sanitySlug":"for/startups","sanityPageRev":"g64pjnSZ7Hl1FTIxzOvCQN"});
        trackLCP();
      })();
    
          success();
        } catch (err) {
          failure(err);
        }
      })();
    </script><link rel="canonical" href="https://coda.io/for/startups"/><meta name="description" content="A successful startup runs on efficiency. Learn how Coda can power your business without draining the reserves. Apply for a $1,000 startup credit."/><meta name="image" content="https://sanity-images.imgix.net/production/0078acc43c059d6ce6fee6be9dfa9dabc5060427-1200x630.png?w=&amp;auto=format%2Ccompress"/><meta name="twitter:card" content="summary"/><meta name="twitter:site" content="@coda_hq"/><meta name="twitter:title" content="Coda for startups, Coda startup credit - Coda"/><meta name="twitter:description" content="A successful startup runs on efficiency. Learn how Coda can power your business without draining the reserves. Apply for a $1,000 startup credit."/><meta name="twitter:image" content="https://sanity-images.imgix.net/production/0078acc43c059d6ce6fee6be9dfa9dabc5060427-1200x630.png?w=&amp;auto=format%2Ccompress"/><meta name="twitter:card" content="summary_large_image"/><meta property="og:type" content="website"/><meta property="og:site_name" content="Coda | Everything evolves, the evolution of documents."/><meta property="og:url" content="https://coda.io/for/startups"/><meta property="og:title" content="Coda for startups, Coda startup credit - Coda"/><meta property="og:description" content="A successful startup runs on efficiency. Learn how Coda can power your business without draining the reserves. Apply for a $1,000 startup credit."/><meta property="og:image" content="https://sanity-images.imgix.net/production/0078acc43c059d6ce6fee6be9dfa9dabc5060427-1200x630.png?w=&amp;auto=format%2Ccompress"/><meta itemProp="name" content="Coda for startups, Coda startup credit - Coda"/><meta itemProp="description" content="A successful startup runs on efficiency. Learn how Coda can power your business without draining the reserves. Apply for a $1,000 startup credit."/><meta itemProp="image" content="https://sanity-images.imgix.net/production/0078acc43c059d6ce6fee6be9dfa9dabc5060427-1200x630.png?w=&amp;auto=format%2Ccompress"/><meta name="pid" content="f"/><title>Coda for startups, Coda startup credit - Coda</title></head><body class=""><div id="coda-react-host" class="website"><div data-layer-id="1" data-is-transparent-container="true" style="display:contents" data-transparent-container-forward-to-first-child="true"><div class="PTzvK5dZ jMSav7ck gjzUOZZj" data-route-id-1="true"><div data-layer-id="2" data-is-transparent-container="true" style="display:contents" data-transparent-container-forward-to-first-child="true"><div><div class="JsaSjFl4 ma9cBqXR"><div><div class="tviomk_7 phWjMn12"><div class="MphYWiGE" tabindex="-1"><div class="uIt99OXB"><span class="QBdI782x tDgVWvTM IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Skip to content</span><div class="z7MeYWe9 jHOdnQlp R3x3Vupq Cc8jWDW4 qs2rLihn" id="header-bar-elem" data-coda-logging-id="desktop-header" role="banner"><div class="kyQHGUbv"><div class="_8svlqnrO"><a data-coda-logging-id="header-coda-logo" href="/" class="Gd3qW16C"><img src="https://cdn.coda.io/assets/754470f9812e/img/coda-font-black.svg" alt="Coda" class="Gnuhq4SI"/></a></div><div role="navigation" aria-label="primary navigation" class="jRQowFog KlDVLXGC"><div class="ig404mDS"><div class="p5urH9sI T5YP1wa4"><div class="gjzUOZZj HCfIXj7Y" data-kr-interactive="true" data-route-id-2="true" data-coda-logging-id="solutions-menu"><span class="V__lxoju H4_Y_B1Z ieDde3i3 IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false" aria-expanded="false" aria-haspopup="true">Solutions<span aria-hidden="true" class="AQlGHRF8 gQFrvYfq ru6msrgU kr-icon icon"></span></span><div class="pjBeVsRJ"><div class="ORRxfCuv"><div class="fZLeu8R5"><div class="tjUyQyw1"><div class="JRXfynUg"><div class="FhWVIxeo">Team size</div><div class="JF318drV"><a class="TYqU6_kQ D5OT7C7b" href="/enterprise" data-coda-logging-id="enterprise-page-link" data-kr-interactive="true" rel="noopener">Enterprise</a><a class="TYqU6_kQ D5OT7C7b" href="/for/small-businesses" data-coda-logging-id="use-case-page-small-businesses" data-kr-interactive="true" rel="noopener">Small businesses</a><a class="TYqU6_kQ D5OT7C7b" href="/for/startups" data-coda-logging-id="use-case-page-startups" data-kr-interactive="true" rel="noopener">Startups</a></div></div><div class="JRXfynUg"><div class="FhWVIxeo">Role</div><div class="JF318drV"><a class="TYqU6_kQ D5OT7C7b" href="/for/product-teams" data-coda-logging-id="use-case-page-product-management" data-kr-interactive="true" rel="noopener">Product</a><a class="TYqU6_kQ D5OT7C7b" href="/for/sales" data-coda-logging-id="use-case-page-sales" data-kr-interactive="true" rel="noopener">Sales &amp; success</a><a class="TYqU6_kQ D5OT7C7b" href="/for/education" data-coda-logging-id="use-case-page-education" data-kr-interactive="true" rel="noopener">Education</a></div></div><div class="JRXfynUg"><div class="FhWVIxeo">Scenario</div><div class="JF318drV"><a class="TYqU6_kQ D5OT7C7b" href="/for/meetings" data-coda-logging-id="use-case-page-meetings" data-kr-interactive="true" rel="noopener">Meetings</a><a class="TYqU6_kQ D5OT7C7b" href="/for/projects" data-coda-logging-id="use-case-page-projects" data-kr-interactive="true" rel="noopener">Project management</a><a class="TYqU6_kQ D5OT7C7b" href="/for/okrs" data-coda-logging-id="use-case-page-okrs" data-kr-interactive="true" rel="noopener">OKRs</a><a class="TYqU6_kQ D5OT7C7b" href="/for/knowledge-management" data-coda-logging-id="use-case-page-knowledge-management" data-kr-interactive="true" rel="noopener">Wikis</a></div></div></div><hr class="wdZI4g3n"/><a class="TZF8bYjl iHtWC85e D5OT7C7b" href="/use-cases" data-coda-logging-id="see-all-use-cases-link" data-kr-interactive="true" rel="noopener">See all solutions</a></div><div class="fZLeu8R5 gsHLV8o9"><div class="d7bUH6y7 KluW6bSE"><div class="FhWVIxeo">Case studies</div><a class="t7RLVijN iHtWC85e" href="https://coda.io/how-foraged-cut-their-time-to-market-with-coda" data-coda-logging-id="case-studies-slot-1" data-kr-interactive="true" rel="noopener"><img alt="How Foraged cut their time to market by 2 months with Coda." class="NNhPXbbq" src="https://codaio.imgix.net/docs/Zc2Jk8ISyY/blobs/bl-U6Ar_PeJ6x/124bae377c8875305bb5044f02584ff44f3a1ca0259db3190123743b3f4457439c11bbc9610980aab88f495123ff62a9cc5710c205077f4a3609ff0022b219b58506eaba11b8dedd6fb3982e386c108ed356c830010f7279a8b12069e53139ec909be628?auto=format%2Ccompress&amp;fit=crop&amp;w=97&amp;h=50&amp;crop=entropy" srcSet="https://codaio.imgix.net/docs/Zc2Jk8ISyY/blobs/bl-U6Ar_PeJ6x/124bae377c8875305bb5044f02584ff44f3a1ca0259db3190123743b3f4457439c11bbc9610980aab88f495123ff62a9cc5710c205077f4a3609ff0022b219b58506eaba11b8dedd6fb3982e386c108ed356c830010f7279a8b12069e53139ec909be628?auto=format%2Ccompress&amp;fit=crop&amp;w=97&amp;h=50&amp;crop=entropy 1x, https://codaio.imgix.net/docs/Zc2Jk8ISyY/blobs/bl-U6Ar_PeJ6x/124bae377c8875305bb5044f02584ff44f3a1ca0259db3190123743b3f4457439c11bbc9610980aab88f495123ff62a9cc5710c205077f4a3609ff0022b219b58506eaba11b8dedd6fb3982e386c108ed356c830010f7279a8b12069e53139ec909be628?auto=format%2Ccompress&amp;fit=crop&amp;w=97&amp;h=50&amp;dpr=2&amp;crop=entropy 2x" loading="lazy"/><div class="vfPwIq5e D5OT7C7b">How Foraged cut their time to market by 2 months with Coda.</div></a><a class="t7RLVijN iHtWC85e" href="https://coda.io/case-study-neos-design" data-coda-logging-id="case-studies-slot-2" data-kr-interactive="true" rel="noopener"><img alt="How NEOS Design saves 500 hours a year running on Coda." class="NNhPXbbq" src="https://codaio.imgix.net/docs/Xy8DAMpIFq/blobs/bl-CJExmPMJdr/5b8e6c012b60174455ce6fb12e62e05b736d7659b674e88b6ffcba484d8c200ce2a9373a42faa7415e53a76a55b3e41c93dd0df1d1531ae8dad8355c38d271019263205b8a0c409808315db906c27692e0243a9bcc4c6d229abeef7d1e3012ffa3270eb4?auto=format%2Ccompress&amp;fit=crop&amp;w=97&amp;h=50&amp;crop=entropy" srcSet="https://codaio.imgix.net/docs/Xy8DAMpIFq/blobs/bl-CJExmPMJdr/5b8e6c012b60174455ce6fb12e62e05b736d7659b674e88b6ffcba484d8c200ce2a9373a42faa7415e53a76a55b3e41c93dd0df1d1531ae8dad8355c38d271019263205b8a0c409808315db906c27692e0243a9bcc4c6d229abeef7d1e3012ffa3270eb4?auto=format%2Ccompress&amp;fit=crop&amp;w=97&amp;h=50&amp;crop=entropy 1x, https://codaio.imgix.net/docs/Xy8DAMpIFq/blobs/bl-CJExmPMJdr/5b8e6c012b60174455ce6fb12e62e05b736d7659b674e88b6ffcba484d8c200ce2a9373a42faa7415e53a76a55b3e41c93dd0df1d1531ae8dad8355c38d271019263205b8a0c409808315db906c27692e0243a9bcc4c6d229abeef7d1e3012ffa3270eb4?auto=format%2Ccompress&amp;fit=crop&amp;w=97&amp;h=50&amp;dpr=2&amp;crop=entropy 2x" loading="lazy"/><div class="vfPwIq5e D5OT7C7b">How NEOS Design saves 500 hours a year running on Coda.</div></a></div><hr class="wdZI4g3n"/><a class="TZF8bYjl iHtWC85e D5OT7C7b" href="/case-studies" data-coda-logging-id="see-all-case-studies-link" data-kr-interactive="true" rel="noopener">See all case studies</a></div></div></div></div><div class="gjzUOZZj HCfIXj7Y" data-kr-interactive="true" data-route-id-3="true" data-coda-logging-id="resources-menu"><span class="V__lxoju H4_Y_B1Z ieDde3i3 IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false" aria-expanded="false" aria-haspopup="true">Resources<span aria-hidden="true" class="AQlGHRF8 gQFrvYfq ru6msrgU kr-icon icon"></span></span><div class="pjBeVsRJ"><div class="ORRxfCuv"><div class="fZLeu8R5"><div class="D89o_cE2"><a class="bWJDVpaI iHtWC85e" href="/learn" data-coda-logging-id="learn-coda-icon-link" data-kr-interactive="true" rel="noopener"><div class="QBiiw8tE"><div class="WyvQGChz lzFfXw_H z_DxI72r M0Mjgu_f"><span aria-hidden="true" class="AQlGHRF8 Fy2lbJ3e OB5oCT7T kr-icon icon" style="background-color:transparent;color:#8e8e8e"></span><img alt="" class="XDB1ZkDQ UeEE5Inb" draggable="false" src="https://cdn.coda.io/icons/svg/color/graduation-cap.svg"/></div><div class="kbLFB50c D5OT7C7b">Learn</div></div><div class="UKE93yQ0">Learn the Coda building blocks through short videos and tailored exercises.</div></a><a class="bWJDVpaI iHtWC85e" href="https://community.coda.io/" data-coda-logging-id="community-icon-link" data-kr-interactive="true" target="_blank" rel="noopener"><div class="QBiiw8tE"><div class="WyvQGChz lzFfXw_H z_DxI72r M0Mjgu_f"><span aria-hidden="true" class="AQlGHRF8 Fy2lbJ3e OB5oCT7T kr-icon icon" style="background-color:transparent;color:#8e8e8e"></span><img alt="" class="XDB1ZkDQ UeEE5Inb" draggable="false" src="https://cdn.coda.io/icons/svg/color/chat.svg"/></div><div class="kbLFB50c D5OT7C7b">Community<span aria-hidden="true" class="AQlGHRF8 pm6XxSkm JM_t_WDH kr-icon icon"></span></div></div><div class="UKE93yQ0">Join heads with our best and brightest makers, and get early access to features.</div></a><a class="bWJDVpaI iHtWC85e" href="/webinars" data-coda-logging-id="webinars-icon-link" data-kr-interactive="true" target="_blank" rel="noopener"><div class="QBiiw8tE"><div class="WyvQGChz lzFfXw_H z_DxI72r M0Mjgu_f"><span aria-hidden="true" class="AQlGHRF8 Fy2lbJ3e OB5oCT7T kr-icon icon" style="background-color:transparent;color:#8e8e8e"></span><img alt="" class="XDB1ZkDQ UeEE5Inb" draggable="false" src="https://cdn.coda.io/icons/svg/color/video-call.svg"/></div><div class="kbLFB50c D5OT7C7b">Webinars<span aria-hidden="true" class="AQlGHRF8 pm6XxSkm JM_t_WDH kr-icon icon"></span></div></div><div class="UKE93yQ0">Come for the education, stay for the entertainment. Hone your skills and meet the team behind Coda.</div></a></div><hr class="wdZI4g3n"/><a class="TZF8bYjl iHtWC85e D5OT7C7b" href="/signup" data-coda-logging-id="try-for-free-link" data-kr-interactive="true" rel="noopener">Try coda for free</a></div><div class="fZLeu8R5 gsHLV8o9"><div class="cxFAuADQ KluW6bSE"><div class="JRXfynUg"><div class="FhWVIxeo">Ecosystem</div><div class="JF318drV"><a class="TYqU6_kQ D5OT7C7b" href="/packs" data-coda-logging-id="packs-link" data-kr-interactive="true" rel="noopener">Packs</a><a class="TYqU6_kQ D5OT7C7b" href="/developers" data-coda-logging-id="api-docs-link" data-kr-interactive="true" rel="noopener">API</a><a class="TYqU6_kQ D5OT7C7b" href="/affiliate-program" data-coda-logging-id="earn-credit-link" data-kr-interactive="true" rel="noopener">Affiliate program</a></div></div><div class="JRXfynUg"><div class="FhWVIxeo">Jumpstarts</div><div class="JF318drV"><a class="TYqU6_kQ D5OT7C7b" href="https://www.youtube.com/playlist?list=PLcQRHmSuAAiq-GXGIQk7lOZEnbb3bWZhX" data-coda-logging-id="coda-essential-videos-link" data-kr-interactive="true" target="_blank" rel="noopener">Coda essentials<span aria-hidden="true" class="AQlGHRF8 pm6XxSkm JM_t_WDH kr-icon icon"></span></a><a class="TYqU6_kQ D5OT7C7b" href="https://coda.io/gallery/quick-starts" data-coda-logging-id="quick-starts-link" data-kr-interactive="true" rel="noopener">Quick starts</a><a class="TYqU6_kQ D5OT7C7b" href="https://help.coda.io" data-coda-logging-id="help-center-link" data-kr-interactive="true" target="_blank" rel="noopener">Help articles<span aria-hidden="true" class="AQlGHRF8 pm6XxSkm JM_t_WDH kr-icon icon"></span></a><a class="TYqU6_kQ D5OT7C7b" href="/blog" data-coda-logging-id="coda-blog-link" data-kr-interactive="true" target="_blank" rel="noopener">Coda blog<span aria-hidden="true" class="AQlGHRF8 pm6XxSkm JM_t_WDH kr-icon icon"></span></a></div></div></div><hr class="wdZI4g3n"/><a class="TZF8bYjl iHtWC85e D5OT7C7b" href="/jobs" data-coda-logging-id="jobs-link" data-kr-interactive="true" rel="noopener">We&#x27;re hiring!</a></div></div></div></div><div class="V__lxoju HCfIXj7Y" data-coda-logging-id="doc-gallery-link" data-coda-ui-id="header-doc-gallery-link"><a class="H4_Y_B1Z ieDde3i3" href="/gallery" data-coda-logging-id="doc-gallery-link" data-kr-interactive="true" rel="noopener">Gallery</a></div><div class="V__lxoju HCfIXj7Y" data-coda-logging-id="pricing-page-link"><a class="H4_Y_B1Z ieDde3i3" href="/pricing" data-coda-logging-id="pricing-page-link" data-kr-interactive="true" rel="noopener">Pricing</a></div></div><div data-layer-id="3" data-is-transparent-container="true" style="display:contents" data-transparent-container-forward-to-first-child="true"><span class="zg_dzf2Z O4X1GqwM IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false" style="right:0;width:20px"><span aria-hidden="true" class="AQlGHRF8 DFGf_8Q1 fHqqkupC kr-icon icon"></span></span></div></div></div><a href="/signin?continueTo=%2F" data-coda-logging-id="headerBar-signIn" class="ZxhCLx2O">Sign in</a><a href="/contact/sales?utm_source=coda&amp;utm_medium=header-nav-button" data-coda-logging-id="contact-sales-link" class="pgx7r_gx QBdI782x">Contact sales</a><div class="taMI1Jmb"><a href="/signup?continueTo=%2F" data-coda-logging-id="signupButton-headerBar-desktop" class="lnKPY4gn E677KO8X">Sign up</a></div><div class="SHkSdMC5"><div class="ZppR1NOQ" data-kr-loading-indicator="true"></div></div></div></div><div class="BESHwv1q"><div class="phWjMn12 bdtJGnXf" role="main" id="sanity-main"><div class="uUFdccS_"><div><div class="zrHB_GqH"><div class="xaNYgR6D" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div><div class="wJHin_EU"><div class="gYiyaFI4"><div class="JnHYB1p8"><h1 class="yLCSXhGy">Coda for startups</h1><p class="_G7EdnhZ">A successful startup runs on efficiency. Coda is a scalable workhorse that can power every aspect of your business without draining the reserves. Apply for a $1,000 credit to run your startup on Coda.</p><div class="A7_AiQKI"><a href="/form/Coda-for-Startups_dM7AEIcWVQe?1%20Startup%20Partner%20Name=Coda%20for%20Startups" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 ypgfGlMi cguPjpSn IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Apply for startup credit</span></a><a href="/signup" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 NB5Ln9dM cguPjpSn IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Try Coda for free</span></a></div></div><div class="B3vFuqtj aheKiTVD j5QHxvdh GF3CY5K5"><img alt="Product launch tracking template - example of a product launch task tracker in Coda" src="https://sanity-images.imgix.net/production/bdec72d396436338ce0a4f696c9f5769f15c3ec3-2300x1500.png?w=720&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/bdec72d396436338ce0a4f696c9f5769f15c3ec3-2300x1500.png?w=720&amp;auto=format%2Ccompress 720w, https://sanity-images.imgix.net/production/bdec72d396436338ce0a4f696c9f5769f15c3ec3-2300x1500.png?w=1440&amp;auto=format%2Ccompress 1440w, https://sanity-images.imgix.net/production/bdec72d396436338ce0a4f696c9f5769f15c3ec3-2300x1500.png?w=1920&amp;auto=format%2Ccompress 1920w, https://sanity-images.imgix.net/production/bdec72d396436338ce0a4f696c9f5769f15c3ec3-2300x1500.png?w=3840&amp;auto=format%2Ccompress 3840w" fetchpriority="high"/><div class="k6HoA0oM"></div></div></div></div></div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="SCxgzN0S"> <div class="xzYbb8AV"><h2 class="rcsYFo5E">Take a peek inside.</h2><p class="H9ByY1Gn">A set of building blocks to help your team do more, faster.</p></div></div><div class="eG4KVOgr"><a href="https://www.youtube.com/watch?v=YwIbhmA8E04" target="_self"><div class="l_wrNAYQ jfYryUtU"><div class="pao5NNaR" style="background-image:url(https://sanity-images.imgix.net/production/0230a8af8f337290a373a0cd1f5af069bfa67577-128x128.png?w=&amp;auto=format%2Ccompress)"></div><div class="NRC4gML8"><div class="t3sIBeLF">Templates</div><div class="POdL666J">Don’t start from scratch. Drag and drop what you need.</div></div></div></a><a href="https://www.youtube.com/watch?v=p8lUMNm6sSM" target="_self"><div class="l_wrNAYQ jfYryUtU"><div class="pao5NNaR" style="background-image:url(https://sanity-images.imgix.net/production/faeb302243b57f3e340d6c8e3324d2f16a866bf2-128x128.png?w=&amp;auto=format%2Ccompress)"></div><div class="NRC4gML8"><div class="t3sIBeLF">Tables</div><div class="POdL666J">Maintain your team’s source of truth with tables that talk to each other.</div></div></div></a><a href="https://www.youtube.com/watch?v=E9RRLOsoZi0" target="_self"><div class="l_wrNAYQ jfYryUtU"><div class="pao5NNaR" style="background-image:url(https://sanity-images.imgix.net/production/61cc15cf8c9209f5d911039b4405b9e70a826de1-128x128.png?w=&amp;auto=format%2Ccompress)"></div><div class="NRC4gML8"><div class="t3sIBeLF">Customized views</div><div class="POdL666J">Everyone can work off the same data, in their own preferred way.</div></div></div></a></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="yZ4w_g3s"><p class="b9MrtK4I">Teams running on Coda</p><div class="L82iCqLX"><div class="B3vFuqtj"><img alt="Robinhood logo" src="https://sanity-images.imgix.net/production/00779638287c18899ffe8a1a481002cde33ed767-580x112.png?h=60&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/></div><div class="B3vFuqtj"><img alt="BuzzFeed logo" src="https://sanity-images.imgix.net/production/006a0f8fe83195189a48b600aab56dd9829b7272-532x112.png?h=60&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/></div><div class="B3vFuqtj"><img alt="Pinterest logo" src="https://sanity-images.imgix.net/production/540e34e4830a783b494395ef8a3b8a7dc7710e59-453x109.png?h=60&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/></div><div class="B3vFuqtj"><img alt="Doordash logo" src="https://sanity-images.imgix.net/production/25e3fc4ff0fef1774385b2c2e587aeff806031fe-692x112.png?h=60&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/></div><div class="B3vFuqtj"><img alt="Toast logo" src="https://sanity-images.imgix.net/production/1ac5e22afb325f509d243dff4a31e8632fe671f4-412x112.png?h=60&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/></div><div class="B3vFuqtj"><img alt="Square logo" src="https://sanity-images.imgix.net/production/f057ff3a2b443e32e6d963522f35862555a87d46-412x112.png?h=60&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/></div></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="ayXlnCNu"><div class="gJzugKDq"><div><div class="xzYbb8AV"><h2 class="rcsYFo5E">The cure for software overload.</h2><p class="H9ByY1Gn"><span>Every dollar counts. And with Coda, you’ve got one line item with a million possibilities. This flexible doc gives you the tools to build whatever you can think up to serve the growing needs of your company—from product development to company OKR tracking.</span></p></div></div></div><div class="unWsSzHb H8kLZqxu"><div class="kyYmICyn SuddUw7U"><video title="Tool consolidation" muted="" playsinline="" width="100%" height="56.25%" loop="" poster="https://sanity-images.imgix.net/production/9c04715db1f9f29d9c9e18672e11df6cd2f5ebe1-1040x1000.png?h=450&amp;dpr=2&amp;w=&amp;auto=format%2Ccompress"><source src="https://cdn.sanity.io/files/2epdaewr/production/0aaeb29ed6956cfc19ebd5194823d8154f6614b4.mp4" type="video/mp4"/></video></div></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="ayXlnCNu m77JefpU"><div class="gJzugKDq iQiMat9X"><div class="B3vFuqtj aheKiTVD I7L2VwLt"><img alt="A Coda doc - an example of a project proposal built in Coda" src="https://sanity-images.imgix.net/production/10a50dfa1a65dc355a97f0e859b64eb58b30d68a-1040x1000.png?w=1200&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/10a50dfa1a65dc355a97f0e859b64eb58b30d68a-1040x1000.png?w=1200&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/10a50dfa1a65dc355a97f0e859b64eb58b30d68a-1040x1000.png?w=1200&amp;auto=format%2Ccompress 2x" loading="lazy"/><div class="k6HoA0oM"></div></div></div><div class="unWsSzHb"><div><div class="xzYbb8AV"><h2 class="rcsYFo5E">Your startup’s all-in-one hub.</h2><p class="H9ByY1Gn"><span>Updating stakeholders requires thoughtfully conveyed company vitals. That’s a big ask for a startup trying to manage day-to-day functions. But! Running your business on Coda means that everything from pitches to board meetings can live in a single doc.</span></p></div></div></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU OJQEnIsD"><div class="eFNXbRH7"><div class="xaNYgR6D" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div class="B3vFuqtj"><img alt="Appetiser logo" src="https://sanity-images.imgix.net/production/41140cd8bee8435f92b19cc5c19d49993025638b-2698x484.png?w=350&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/41140cd8bee8435f92b19cc5c19d49993025638b-2698x484.png?w=350&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/41140cd8bee8435f92b19cc5c19d49993025638b-2698x484.png?w=350&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="a29R2LJw">“<!-- -->There’s a distinct advantage to working with a tool that’s as agile as your team. Coda allowed us to meet the challenges of a growing company and ever-expanding team head-on.<!-- -->”</div><div class="S0FfE4uD"><div class="B3vFuqtj ZPEXx_0z"><img alt="Jamie Shostak" src="https://sanity-images.imgix.net/production/05a8908280d724f79690856231b61c8328d2ee2e-1000x1000.png?w=120&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/05a8908280d724f79690856231b61c8328d2ee2e-1000x1000.png?w=120&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/05a8908280d724f79690856231b61c8328d2ee2e-1000x1000.png?w=120&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="smlG2RyT"><div class="AYyrpNot">Jamie Shostak</div><div class="uhspqy_P">Founder and Director at Appetiser</div></div></div></div></div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="SCxgzN0S"> <div class="xzYbb8AV"><h2 class="rcsYFo5E">Plays nicely with your tools.</h2><p class="H9ByY1Gn">With Packs and integrations via Zapier, you can connect your doc with the other apps you use. Manage your storefront from your doc with the Shopify Pack. Or have your doc send content marketing campaigns with the Gmail Pack.</p></div></div><div class="if17TuiR"><a href="/packs/microsoft-teams-10591" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Microsoft Teams logo" src="https://sanity-images.imgix.net/production/a191f793a09626388fad2cc295604f8a1ffa209c-2203x2049.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/a191f793a09626388fad2cc295604f8a1ffa209c-2203x2049.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/a191f793a09626388fad2cc295604f8a1ffa209c-2203x2049.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Microsoft Teams</h5></div></a><a href="/packs/figma-1010" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Figma logo" src="https://sanity-images.imgix.net/production/4ca1f53796dc78ccf6852ba1743440d5d57cb5da-108x162.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/4ca1f53796dc78ccf6852ba1743440d5d57cb5da-108x162.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/4ca1f53796dc78ccf6852ba1743440d5d57cb5da-108x162.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Figma</h5></div></a><a href="/packs/github-1013" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="" src="https://sanity-images.imgix.net/production/7b6ac984d6adbc6fbb2c100855747482e0e8973e-177x171.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/7b6ac984d6adbc6fbb2c100855747482e0e8973e-177x171.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/7b6ac984d6adbc6fbb2c100855747482e0e8973e-177x171.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Github</h5></div></a><a href="/packs/zoom-1017" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Zoom logo" src="https://sanity-images.imgix.net/production/0293cfe90944e2d737b31976af72064345adccf8-523x535.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/0293cfe90944e2d737b31976af72064345adccf8-523x535.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/0293cfe90944e2d737b31976af72064345adccf8-523x535.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Zoom</h5></div></a><a href="/packs/slack-1000" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Slack logo" src="https://sanity-images.imgix.net/production/a7a93b0793396e2550e1140aac6754791fcdc88e-144x144.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/a7a93b0793396e2550e1140aac6754791fcdc88e-144x144.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/a7a93b0793396e2550e1140aac6754791fcdc88e-144x144.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Slack</h5></div></a><a href="/packs/gmail-1004" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Gmail logo" src="https://sanity-images.imgix.net/production/79c8a380c5a076c9822020eac5e42bcd1df564af-686x512.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/79c8a380c5a076c9822020eac5e42bcd1df564af-686x512.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/79c8a380c5a076c9822020eac5e42bcd1df564af-686x512.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Gmail</h5></div></a><a href="/packs/jira-1052" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Jira logo" src="https://sanity-images.imgix.net/production/66d3a9ba68fd0d99bd8e365c7589654e84bfdd34-400x400.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/66d3a9ba68fd0d99bd8e365c7589654e84bfdd34-400x400.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/66d3a9ba68fd0d99bd8e365c7589654e84bfdd34-400x400.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Jira</h5></div></a><a href="/packs/asana-11512" target="_self"><div class="ByCdLHkK"><div class="B3vFuqtj _vwx_6pK"><img alt="Asana logo" src="https://sanity-images.imgix.net/production/a228b2c62569337b4602f9454d611f7207f3522d-2400x2219.png?w=100&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/a228b2c62569337b4602f9454d611f7207f3522d-2400x2219.png?w=100&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/a228b2c62569337b4602f9454d611f7207f3522d-2400x2219.png?w=100&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><h5 class="rK9m8jBh">Asana</h5></div></a></div><div class="SLiwYk3K"><p class="b9MrtK4I">Choose from hundreds of Packs in our Gallery.</p><div class="A7_AiQKI"><a href="/gallery?filter=packs" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 ypgfGlMi cguPjpSn IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Explore Packs</span></a></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div><div class="SCxgzN0S"> <div class="xzYbb8AV"><h2 class="rcsYFo5E">The doc that can do it all.</h2><p class="H9ByY1Gn">With Coda, you can create docs for team, product, and knowledge management with ease.</p></div></div></div><div class="wRcjNWyc"><div class="Nxl00ulH"></div><span class="_wxlgrmO ovKvEeoV IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false"><div class="Nxl00ulH buBS9STZ"></div><div class="YO60O4Xf"></div><div class="B3vFuqtj bnVndppS"><img alt="" src="https://sanity-images.imgix.net/production/22b3b634190393222f36919c2634e9163da10aa9-48x48.png?w=72&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/22b3b634190393222f36919c2634e9163da10aa9-48x48.png?w=72&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/22b3b634190393222f36919c2634e9163da10aa9-48x48.png?w=72&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><span class="UIdejZJU">Team hub</span></span><span class="_wxlgrmO viA6ZWRH IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false"><div class="Nxl00ulH buBS9STZ"></div><div class="B3vFuqtj bnVndppS"><img alt="project tracker icon" src="https://sanity-images.imgix.net/production/28ccaf730c6989b805c607f9484b95cffdeeddae-192x192.png?w=72&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/28ccaf730c6989b805c607f9484b95cffdeeddae-192x192.png?w=72&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/28ccaf730c6989b805c607f9484b95cffdeeddae-192x192.png?w=72&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><span class="UIdejZJU">Project tracker</span></span><span class="_wxlgrmO viA6ZWRH IpAJtrNI ycQRzgu7" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false"><div class="Nxl00ulH buBS9STZ"></div><div class="B3vFuqtj bnVndppS"><img alt="" src="https://sanity-images.imgix.net/production/994394df7e8b0b0afa904cdc49e2b95d1ec3ece4-48x48.png?w=72&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/994394df7e8b0b0afa904cdc49e2b95d1ec3ece4-48x48.png?w=72&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/994394df7e8b0b0afa904cdc49e2b95d1ec3ece4-48x48.png?w=72&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><span class="UIdejZJU">Brief</span></span></div><div class="KzrPBYZq"><div class="xaNYgR6D" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div class="QIyxFL14" style="opacity:1;display:revert;transform:none"><a href="/@mattwoods/team-hub" target="_self"><div class="B3vFuqtj aheKiTVD QJEwgwdn"><img alt="A Team Hub in Coda - includes a list of teammates and details for projects the team is working on." src="https://sanity-images.imgix.net/production/4338c9775d5f5dccb6a3a4fd17284a8cf771643d-2300x1500.jpg?h=1000&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/><div class="k6HoA0oM"></div></div></a></div><div class="QIyxFL14" style="opacity:0;display:none;transform:translateY(20px) translateZ(0)"><a href="/@syc/tracker-template" target="_self"><div class="B3vFuqtj aheKiTVD QJEwgwdn"><img alt="Project timelines in Coda - displays projects in a calendar view, a project list with status, owner, due dates and flags." src="https://sanity-images.imgix.net/production/68a01bdddaf09ac2ec67c14e1ea30ca6b2428cec-2300x1500.jpg?h=1000&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/><div class="k6HoA0oM"></div></div></a></div><div class="QIyxFL14" style="opacity:0;display:none;transform:translateY(20px) translateZ(0)"><a href="/@codatemplates/two-way-writeup" target="_self"><div class="B3vFuqtj aheKiTVD QJEwgwdn"><img alt="A product launch proposal in Coda - problem statement, solution statement, and an embedded Figma design doc." src="https://sanity-images.imgix.net/production/b2958887701237e51570fc7fc2492e2175c35160-2300x1500.jpg?h=1000&amp;w=&amp;auto=format%2Ccompress" loading="lazy"/><div class="k6HoA0oM"></div></div></a></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="Lc56UMQd"> <div class="xzYbb8AV"><h2 class="rcsYFo5E">Coda is a leader in 10 different software categories thanks to our reviewers.</h2><p class="H9ByY1Gn">Come for the roadmaps, project and goal trackers, and team wikis. Stay for the flexibility of an all-in-one doc that does much more.</p></div></div><div class="A7_AiQKI"><a href="/case-studies" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 ypgfGlMi wLvCsTAs IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">See how teams use Coda</span></a></div><div class="IZWkfxec"><div class="B3vFuqtj qwX3OvDp"><img alt="G2 badge awarded to Coda for Easiest To Do Business, Enterprise, Summer 2022" src="https://sanity-images.imgix.net/production/7e3a30522812961db95b97d1e5f82fe52d2f3e12-770x1000.png?w=500&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/7e3a30522812961db95b97d1e5f82fe52d2f3e12-770x1000.png?w=500&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/7e3a30522812961db95b97d1e5f82fe52d2f3e12-770x1000.png?w=500&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="B3vFuqtj qwX3OvDp"><img alt="G2 badge awarded to Coda for Leader in Small Business, Summer 2022" src="https://sanity-images.imgix.net/production/c6b5e6b3b44e4119ef8e94c39f5064736d87d5d8-770x1000.png?w=500&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/c6b5e6b3b44e4119ef8e94c39f5064736d87d5d8-770x1000.png?w=500&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/c6b5e6b3b44e4119ef8e94c39f5064736d87d5d8-770x1000.png?w=500&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="B3vFuqtj qwX3OvDp"><img alt="G2 badge awarded to Coda for High Performer, Enterprise, Summer 2022" src="https://sanity-images.imgix.net/production/33c2fa73cc903659ac579d56ff25ad94ef12c77d-770x1000.png?w=500&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/33c2fa73cc903659ac579d56ff25ad94ef12c77d-770x1000.png?w=500&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/33c2fa73cc903659ac579d56ff25ad94ef12c77d-770x1000.png?w=500&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="B3vFuqtj qwX3OvDp"><img alt="G2 badge awarded to Coda for Momentum Leader, Summer 2022" src="https://sanity-images.imgix.net/production/4083ca150e514039b6e6cadea45a5ee61aa6787d-770x1000.png?w=500&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/4083ca150e514039b6e6cadea45a5ee61aa6787d-770x1000.png?w=500&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/4083ca150e514039b6e6cadea45a5ee61aa6787d-770x1000.png?w=500&amp;auto=format%2Ccompress 2x" loading="lazy"/></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div><div class="xzYbb8AV"><h2 class="rcsYFo5E">Blueprints for success. </h2><p class="H9ByY1Gn">Being a startup doesn’t mean starting from scratch. Our Gallery is full of innovative playbooks published by some of the most inventive thinkers and makers out there. Docs like these are ready and waiting to be copied and applied to your business.</p></div><div class="A7_AiQKI"><a href="/gallery" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 ypgfGlMi wLvCsTAs IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Explore the Gallery</span></a></div><div class="mL7Nl1S2"><a class="aZxL8gbP" href="/@lshackleton/two-way-writeups-coda-s-secret-to-shipping-fast" target="_self"><div class="V_cF8Ok3" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/7ef38e92727d74654a8c00a2a4cde2bdf4c2fe2f-3840x960.png?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/7ef38e92727d74654a8c00a2a4cde2bdf4c2fe2f-3840x960.png?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/7ef38e92727d74654a8c00a2a4cde2bdf4c2fe2f-3840x960.png?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div class="KWjRGoTw"><div class="d_yqgsIT">Two-way writeups: Coda&#x27;s secret to shipping fast</div><div class="S0FfE4uD SBOR0iqB"><div class="B3vFuqtj ZPEXx_0z"><img alt="Lane Shackleton, Head of Product &amp; Design at Coda" src="https://sanity-images.imgix.net/production/177ea5e8befcd7bf54515ce057dac78b579ffa89-1000x1000.png?w=120&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/177ea5e8befcd7bf54515ce057dac78b579ffa89-1000x1000.png?w=120&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/177ea5e8befcd7bf54515ce057dac78b579ffa89-1000x1000.png?w=120&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="smlG2RyT"><div class="AYyrpNot">Lane Shackleton</div><div class="uhspqy_P">Head of Product &amp; Design at Coda</div></div></div></div><div class="Z6ljrdRG"></div></a><a class="aZxL8gbP" href="/@rahulvohra/superhuman-product-market-fit-engine" target="_self"><div class="V_cF8Ok3" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/977abc2e3aa8ce9d70fff0512fbfbd0e123c12a0-1000x1000.png?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/977abc2e3aa8ce9d70fff0512fbfbd0e123c12a0-1000x1000.png?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/977abc2e3aa8ce9d70fff0512fbfbd0e123c12a0-1000x1000.png?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div class="KWjRGoTw"><div class="d_yqgsIT">The Superhuman Product/Market Fit Engine</div><div class="S0FfE4uD SBOR0iqB"><div class="B3vFuqtj ZPEXx_0z"><img alt="rahul vohra" src="https://sanity-images.imgix.net/production/476f8df0478534444d63f8f9c94e4d3cbbd4e3fe-1000x1000.png?w=120&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/476f8df0478534444d63f8f9c94e4d3cbbd4e3fe-1000x1000.png?w=120&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/476f8df0478534444d63f8f9c94e4d3cbbd4e3fe-1000x1000.png?w=120&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="smlG2RyT"><div class="AYyrpNot">Rahul Vohra</div><div class="uhspqy_P">Founder &amp; CEO at Superhuman</div></div></div></div><div class="Z6ljrdRG"></div></a><a class="aZxL8gbP" href="/@jessica-liu/how-canva-trained-800-employees-to-fuel-a-6-billion-growth-spurt" target="_self"><div class="V_cF8Ok3" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/ec0c93778779c3099cf3737ef11052a4de2ca97e-1000x1000.png?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/ec0c93778779c3099cf3737ef11052a4de2ca97e-1000x1000.png?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/ec0c93778779c3099cf3737ef11052a4de2ca97e-1000x1000.png?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div class="KWjRGoTw"><div class="d_yqgsIT">How Canva trained its employees to fuel a $6B growth spurt</div><div class="S0FfE4uD SBOR0iqB"><div class="B3vFuqtj ZPEXx_0z"><img alt="jessica liu" src="https://sanity-images.imgix.net/production/b934ddc7f4bb5794433824adedb5b1cf41cdbedf-1000x1000.png?w=120&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/b934ddc7f4bb5794433824adedb5b1cf41cdbedf-1000x1000.png?w=120&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/b934ddc7f4bb5794433824adedb5b1cf41cdbedf-1000x1000.png?w=120&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="smlG2RyT"><div class="AYyrpNot">Jessica Liu</div><div class="uhspqy_P">Learning designer at Canva</div></div></div></div><div class="Z6ljrdRG"></div></a></div></div> </div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU OJQEnIsD"><div class="eFNXbRH7"><div class="xaNYgR6D" style="background-image:-webkit-image-set(url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;auto=format%2Ccompress&quot;) 1x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=1.5&amp;auto=format%2Ccompress&quot;) 1.5x, url(&quot;https://sanity-images.imgix.net/production/7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232.svg?w=&amp;dpr=2&amp;auto=format%2Ccompress&quot;) 2x )"></div><div class="B3vFuqtj"><img alt="Searchlight" src="https://sanity-images.imgix.net/production/1c414f2e397c43c160ca3e9bc5c89c7dd1ca1751-1238x238.png?w=350&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/1c414f2e397c43c160ca3e9bc5c89c7dd1ca1751-1238x238.png?w=350&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/1c414f2e397c43c160ca3e9bc5c89c7dd1ca1751-1238x238.png?w=350&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="a29R2LJw">“<!-- -->I know with Coda the performance is going to be there, it’s going to scale with us, and people enjoy using it. If they enjoy using it, it reinforces the culture I want us to have.<!-- -->”</div><div class="S0FfE4uD"><div class="B3vFuqtj ZPEXx_0z"><img alt="Kerry Wang" src="https://sanity-images.imgix.net/production/045c88cd798075525e059b21d3abb3741b10a30c-1000x1000.png?w=120&amp;auto=format%2Ccompress" srcSet="https://sanity-images.imgix.net/production/045c88cd798075525e059b21d3abb3741b10a30c-1000x1000.png?w=120&amp;auto=format%2Ccompress 1x, https://sanity-images.imgix.net/production/045c88cd798075525e059b21d3abb3741b10a30c-1000x1000.png?w=120&amp;auto=format%2Ccompress 2x" loading="lazy"/></div><div class="smlG2RyT"><div class="AYyrpNot">Kerry Wang</div><div class="uhspqy_P">CEO of Searchlight</div></div></div></div></div></div></div><div><div class="LT4a_7tO"><div class="wJHin_EU"><div class="SCxgzN0S"> <div class="JnHYB1p8"><h1 class="yLCSXhGy">Get started your way.</h1><p class="_G7EdnhZ"><span>Ready for a tool that scales with your startup? Apply for the $1,000 credit or contact sales to get your team started in Coda. Of course, you can always dive right in and get started with Coda for free today.</span></p><div class="A7_AiQKI"><a href="https://coda.io/form/Coda-for-Startups_dM7AEIcWVQe?1%20Startup%20Partner%20Name=Coda%20for%20Startups&amp;utm_source=coda&amp;utm_medium=generated_doc&amp;utm_campaign=Coda%2520for%2520X" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 ypgfGlMi cguPjpSn IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Apply for startup credit</span></a><a href="/signup" target="_self"><span class="hrZgLTGx XjOAQaay mfasUoA2 NB5Ln9dM cguPjpSn IpAJtrNI" tabindex="0" data-kr-interactive="true" role="button" aria-disabled="false">Try Coda for free</span></a></div></div></div> </div></div></div></div></div></div><section class="JW8CEboe"><footer class="bHCGe_ja"><div class="I8LrRD8E"><nav aria-label="coda homepage"><a href="/" data-coda-logging-id="footer-coda-logo" data-kr-interactive="true" rel="noopener"><picture><source srcSet="https://cdn.coda.io/assets/754470f9812e/img/footer/icon-coda-logo-red.svg" type="image/svg+xml"/><img class="JgfBoYPh" src="https://cdn.coda.io/assets/754470f9812e/img/footer/icon-coda-logo-red.png" alt="Coda"/></picture></a></nav><nav aria-label="Company navigation"><h4>Company</h4><ul><li><a href="/about" data-coda-logging-id="about-us-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">About us</span></a></li><li><a href="/blog" data-coda-logging-id="coda-blog-link" data-kr-interactive="true" target="_blank" rel="noopener norefferer" class="f91h6Ow3 sdH7EKPW"><span class="">Blog</span><span aria-hidden="true" class="AQlGHRF8 WFXaQXAt JM_t_WDH kr-icon icon"></span></a></li><li><a href="https://coda.io/jobs" data-coda-logging-id="jobs-link" data-kr-interactive="true" target="_blank" rel="noopener norefferer" class="f91h6Ow3 sdH7EKPW"><span class="">Careers</span><span aria-hidden="true" class="AQlGHRF8 WFXaQXAt JM_t_WDH kr-icon icon"></span></a></li><li><a href="mailto:press@coda.io" data-coda-logging-id="mail-to-press-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Press</span></a></li></ul></nav><nav aria-label="Solutions navigation"><h4>Solutions</h4><ul><li><a href="/enterprise" data-coda-logging-id="enterprise-page-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Enterprise</span></a></li><li><a href="/for/small-businesses" data-coda-logging-id="use-case-page-small-businesses" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Small businesses</span></a></li><li><a href="/for/startups" data-coda-logging-id="use-case-page-startups" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Startups</span></a></li><li><a href="/for/product-teams" data-coda-logging-id="use-case-page-product-management" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Product</span></a></li><li><a href="/for/sales" data-coda-logging-id="use-case-page-sales" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Sales &amp; success</span></a></li><li><a href="/for/okrs" data-coda-logging-id="use-case-page-okrs" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">OKRs</span></a></li><li><a href="/for/meetings" data-coda-logging-id="use-case-page-meetings" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Meetings</span></a></li><li><a href="/use-cases" data-coda-logging-id="see-all-use-cases-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="Hwhhv0m6">Show more</span></a></li></ul></nav><nav aria-label="Try Coda navigation"><h4>Try Coda</h4><ul><li><a href="/pricing" data-coda-logging-id="pricing-page-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Pricing</span></a></li><li><a href="/packs" data-coda-logging-id="packs-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Packs</span></a></li><li><a href="/developers/apis/v1" data-coda-logging-id="api-docs-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">API</span></a></li><li><a href="https://play.google.com/store/apps/details?id=io.coda.codaapp" data-coda-logging-id="android-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Android app</span></a></li><li><a href="https://apps.apple.com/app/id1397968110" data-coda-logging-id="ios-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">iOS app</span></a></li><li><a href="/contact/sales/request-a-demo?utm_source=coda&amp;utm_medium=footer" data-coda-logging-id="request-demo-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Request a demo</span></a></li><li><a data-coda-logging-id="contact-support-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Contact support</span></a></li><li><a href="/affiliate-program" data-coda-logging-id="earn-credit-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Affiliate program</span></a></li></ul></nav><nav aria-label="Resources navigation"><h4>Resources</h4><ul><li><a href="https://help.coda.io" data-coda-logging-id="help-center-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Help center</span></a></li><li><a href="https://community.coda.io" data-coda-logging-id="community-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Community</span></a></li><li><a href="https://coda.io/guides/okrs" data-coda-logging-id="okrs-guide-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Coda guides: OKRs</span></a></li><li><a href="https://coda.io/guides/meetings" data-coda-logging-id="meetings-guide-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Coda guides: Meetings</span></a></li><li><a href="/trust" data-coda-logging-id="security-page-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Trust &amp; security</span></a></li><li><a href="/trust/privacy" data-coda-logging-id="privacy-policy-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Privacy statement</span></a></li><li><a href="https://status.coda.io" data-coda-logging-id="status-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Status</span></a></li><li><a href="/sitemap" data-coda-logging-id="site-map-link" data-kr-interactive="true" rel="noopener" class="f91h6Ow3 sdH7EKPW"><span class="">Site map</span></a></li></ul></nav></div><div aria-label="Read reviews of Coda on G2" class="N1jhktMZ"><a href="https://www.g2.com/products/coda-coda/reviews?utm_source=review-widget" data-kr-interactive="true" target="_blank" rel="noopener"><img class="xJPxClvz" alt="Read Coda reviews on G2" src="https://www.g2.com/products/coda-coda/widgets/stars?color=white&amp;type=read"/></a></div></footer><div class="cWp9nYed"><div class="uxSvYml7">Copyright © 2022 Coda. All rights reserved.</div><div class="UXHMvEd4" role="navigation" aria-label="social media links"><a href="https://twitter.com/coda_hq" data-coda-logging-id="footer-twitter-logo" data-kr-interactive="true" target="_blank" rel="noopener"><img src="https://cdn.coda.io/assets/754470f9812e/img/footer/twitter-footer-logo.svg" alt="Twitter"/></a><a href="https://www.youtube.com/channel/UC73YRwUcAjAW_euaGzDUAzg" data-coda-logging-id="footer-youtube-logo" data-kr-interactive="true" target="_blank" rel="noopener"><img src="https://cdn.coda.io/assets/754470f9812e/img/footer/youtube-footer-logo.svg" alt="YouTube"/></a><a href="https://www.linkedin.com/company/codainc/mycompany/" data-coda-logging-id="footer-linkedin-logo" data-kr-interactive="true" target="_blank" rel="noopener"><img src="https://cdn.coda.io/assets/754470f9812e/img/footer/linkedin-icon.svg" alt="LinkedIn"/></a><a href="https://www.facebook.com/codahq/" data-coda-logging-id="footer-facebook-logo" data-kr-interactive="true" target="_blank" rel="noopener"><img src="https://cdn.coda.io/assets/754470f9812e/img/footer/facebook-icon.svg" alt="Facebook"/></a></div></div></section></div></div></div></div></div><div data-layer-id="4" data-is-transparent-container="true" style="display:contents" data-transparent-container-forward-to-first-child="true"><div></div></div></div></div></div></div></div><div style="width:0;height:0;position:absolute;overflow:hidden"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <mask id="icons8-hamburger-button-mask" mask-type="alpha">
        <image width="30" height="30" xlink:href="data:image&#x2F;png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6&#x2F;NlyAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADoSURBVGhD7dkhS0NRGIDhC2Njg8FEliwLC5Y1i9lmsuw3rJsMgyXD&#x2F;oJdwbYfYFuxL6yuC2ZBZNt7sB7uuWDZh+8Dbzyn3BPO+W4lSZIkSX8xpKvAjaixBe3pELwVtahWh74ot0HE0tcu2lFucbS+6YKKJvRCb4FLx&#x2F;mWJEmSTkubbmgWuDvqUyPPlLubRmtDXaqVXks&#x2F;lNsgYtdU9E65xdH6pDMqStOOB3oK3CNdkiRJ0mk5p3taBm5OY2pkTbm7abQ+aEC1&#x2F;uVr6ZVyi6O1pR4VpYlH+i+TmyREaUrF4yxJkiRJ+lVVR1SIU4i+n6ACAAAAAElFTkSuQmCC"/>
    </mask>
    <symbol id="icons8-hamburger-button" viewBox="0 0 30 30">
        <rect width="100%" height="100%" mask="url(#icons8-hamburger-button-mask)"/>
    </symbol>
    <mask id="mobile-back-arrow-mask" mask-type="alpha">
        <image width="30" height="30" xlink:href="data:image&#x2F;png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHdSURBVHgB7dzBTSNBAETRDxFsCBUKGwGEQAibyW4IGwJEAGRABkAk0BYgcQDBDB6rGv0nleyDffpyj08NqnLE3M7GTscydjt2OXaNDi5jV2OP7+wvOqiM3fF+DKMcWPg8xut+oU2Fr8fY7Q8TOmYO4fmZkYXfmc4MQcLyGNpIWHZMvd0Z2quwPsYd2qvwvRhBexOMUSMYo0YwRo1gjBrBGDWCMWoEY9QIxqgRjFEjGKNGMEaNYIwawRg1gjFqBGPUCMaoEYxRIxijRjBGjWCMGsEYNYIxagRj1AjGqBGMUSMYo0YwRo1gjBrBGDWCMWoEY9QIxqgRjFEjGKNGMEaN3a0HxihyjjGqXGGMKmuOqxO0GX8hJV7vOrlhueAdJJvxX1ahYJQ6wSh1glHqBKPUCUapE4xSJxilTjBKnWCUOsEodYJR6gSj1AlGqROMUicYpU4wSp1glDrBKHWCUeoEo9QJRqkTjFInGKVOMEqdYJQ6wSh1glHqBKPUCUapE4xSJxilTjBKnWCUOsEodYJR6gSj1Anfi6INhPVRTtAmwroo&#x2F;5jQMf3ux36&#x2F;vP54MwTZuWd5lCWf1Urh68dX0EGEz6NM+fyYWfg4yn8mdsTczsdOX94&#x2F;jF2MXSPph3oCSBwclzHyAKIAAAAASUVORK5CYII&#x3D;"/>
    </mask>
    <symbol id="mobile-back-arrow" viewBox="0 0 30 30">
        <rect width="100%" height="100%" mask="url(#mobile-back-arrow-mask)"/>
    </symbol>
</svg>
</div><script type="text/javascript" nonce="9e10f5f613214bce8fc9204893cabc52">
    window.config = {"imgix":{"blobHost":"codaio.imgix.net","blobHostPathPrefix":null,"cdnHost":"cdn-codaio.imgix.net","sanityHost":"sanity-images.imgix.net","webProxyHost":"images-codaio.imgix.net"},"cdnBlobHost":"https://codahosted.io","host":"https://coda.io","assetUrlPrefix":"https://cdn.coda.io/assets/754470f9812e","braze":{"enabled":true,"sdkEndpoint":"sdk.iad-05.braze.com","webSdkKey":"dcc0d6f8-db48-4e34-a078-4c094b493c2d"},"browserVersions":{"Chrome":"81.0","Firefox":"74.0","IOS":"14.5","Opera":"68.0","Safari":"14.1","Samsung Browser":"13.0","Vivaldi":"2.4","WebKit":"537"},"billing":{"stripePublishableKey":"pk_live_DHcK5ES0rVXNNiy27MS85oga"},"customDomainCname":"custom.coda.io","env":"prod","googleAuth":null,"grammarly":{"clientId":"client_2bj6NQMZtKngx8soKyzRt9"},"rootAssetUrlPrefix":"https://cdn.coda.io","intercom":{"appId":"m22vs7y5","enabled":true,"sumoLogicSessionIdUrl":"https://service.us2.sumologic.com/ui/bento.html#/search/","env":"prod"},"isMobile":false,"logTransportEnabled":true,"logTransportLevel":"warn","loggingServerEndpoint":"https://origin.coda.io/logging/","marketo":{"apiHostname":"648-RBQ-128.mktorest.com","formId":"1009"},"microsoftTeams":{"clientId":"0e5a38f0-71f9-45e5-952f-8df55bf56a4b"},"packsAuthHost":"coda.io","sanity":{"useCdn":true,"dataset":"production","projectId":"2epdaewr"},"setup":{"intent":{"docIds":{"assetLibrary":"hx1_UUJUuW","automateWork":"yr-i3hBd9h","inventory":"JTCcut7rw8","meetings":"QxWz9-ouqy","notes":"ciSdK-dntZ","productPlanning":"oN9rjps2_v","teamProject":"VBdBfXjQol"}}},"statsig":{"clientSdkKey":"client-dubWc4hZRNQwa5oIhfi5JK5a8HHvH2s8NjYhyfFyFx8","consoleAPIUrl":"https://statsigapi.net/console/v1","enableStatsigRequestsFromClient":true},"userApiEndpoint":"https://coda.io","recaptchaSiteKey":"6LcWCdgUAAAAADar5DTf3UYv_9dswjctapg3xpi3","featuredCaseStudies":[{"docId":"Zc2Jk8ISyY","publisherUserId":0,"maker":{"userId":0,"name":"System User","slug":""},"slug":"how-foraged-cut-their-time-to-market-with-coda","description":"Jack Hamrick, Co-founder and CEO at Foraged, shares his experience with Coda. ","publishMode":"PLAY","imageUrl":"https://codahosted.io/docs/Zc2Jk8ISyY/blobs/bl-U6Ar_PeJ6x/124bae377c8875305bb5044f02584ff44f3a1ca0259db3190123743b3f4457439c11bbc9610980aab88f495123ff62a9cc5710c205077f4a3609ff0022b219b58506eaba11b8dedd6fb3982e386c108ed356c830010f7279a8b12069e53139ec909be628","title":"How Foraged cut their time to market by 2 months with Coda.","discoverable":true,"earnCredit":false,"creationTimestamp":1663864957.25155,"icon":"worldwide-delivery","url":"https://coda.io/how-foraged-cut-their-time-to-market-with-coda","relativeUrl":"/how-foraged-cut-their-time-to-market-with-coda","lastModifiedTimestamp":1664304728.654,"categories":[{"categoryId":"dd6e63c8-fe9d-4803-85f6-ef324405d5ef","categoryType":"SYSTEM","categoryName":"Header Navigation","description":null,"imageUrl":null,"slug":null,"rank":null},{"categoryId":"bea73401-ac14-4688-8644-60535299c509","categoryType":"SYSTEM","categoryName":"Case Studies","description":"Single-page case studies","imageUrl":null,"slug":null,"rank":0},{"categoryId":"a202f92c-d9da-437d-8dba-82c19998c812","categoryType":"SYSTEM","categoryName":"1st Party","description":"Created by Codans and not influencer docs or created for the SEO program.","imageUrl":null,"slug":null,"rank":0}],"likeCount":0},{"docId":"Xy8DAMpIFq","publisherUserId":0,"maker":{"userId":0,"name":"System User","slug":""},"slug":"case-study-neos-design","description":"Mart\u00EDn Vilches, Founder & CEO at NEOS Design, shares his experience working with Coda. ","publishMode":"PLAY","imageUrl":"https://codahosted.io/docs/Xy8DAMpIFq/blobs/bl-CJExmPMJdr/5b8e6c012b60174455ce6fb12e62e05b736d7659b674e88b6ffcba484d8c200ce2a9373a42faa7415e53a76a55b3e41c93dd0df1d1531ae8dad8355c38d271019263205b8a0c409808315db906c27692e0243a9bcc4c6d229abeef7d1e3012ffa3270eb4","title":"How NEOS Design saves 500 hours a year running on Coda.","discoverable":true,"earnCredit":false,"creationTimestamp":1656438914.251,"icon":"av-receiver","url":"https://coda.io/case-study-neos-design","relativeUrl":"/case-study-neos-design","lastModifiedTimestamp":1656442759.4149,"categories":[{"categoryId":"bea73401-ac14-4688-8644-60535299c509","categoryType":"SYSTEM","categoryName":"Case Studies","description":"Single-page case studies","imageUrl":null,"slug":null,"rank":0},{"categoryId":"dd6e63c8-fe9d-4803-85f6-ef324405d5ef","categoryType":"SYSTEM","categoryName":"Header Navigation","description":null,"imageUrl":null,"slug":null,"rank":null},{"categoryId":"a202f92c-d9da-437d-8dba-82c19998c812","categoryType":"SYSTEM","categoryName":"1st Party","description":"Created by Codans and not influencer docs or created for the SEO program.","imageUrl":null,"slug":null,"rank":0}],"likeCount":0}],"isServerSideRender":true};
    window.rawRuntimeConfig = {"AnalyticsRedesign":"enabled","AnalyticsStorageInNewDatabase":"enabled","AzureContactsIntegration":"enabled","BetterFocusMode":"enabled","BorderDefaultOnImages":"disabled","BrazeSdk":"enabled","BrowserLogTransportConfig":{"useSocket":true,"sendDelayMillis":1000},"BundledPacksPricingRedesign":"enabled","CanvasColumnTourTimestamp":3000000000,"CanvasHeaderShowLastEdited":"enabled","ChatSupportEnabled":"enabled","CleanPeopleColumns":"enabled","CloudFrontCachingTimeToWaitAfterLastOperationSeconds":"0","CommentPanelUxRefresh":"enabled","CommentReactions":"enabled","CommentUxRefresh":"enabled","ConfluenceImporter":"enabled","ContactSalesButtonCopyExperiment":{"name":"E-103","state":"on"},"ContactSalesInAppPrompt":"disabled","CopyWelcomeDocTourV2Experiment":{"name":"E-114","state":"on","timestamp":1661364000},"CsvImporterShowPreview":"disabled","CsvImporterV2":"disabled","CustomDocDomains":"disabled","CustomerSuccessActivationCalendar":"https://hello.coda.io/calendar/team/t/42","CustomerSuccessProUpgradeCalendar":"https://hello.coda.io/calendar/team/t/36","CustomerSuccessTeamUpgradeCalendar":"https://hello.coda.io/calendar/team/t/37","DeferBrowserJs":"enabled","DocAnalyticsTemplateDocId":"hyKdoZHTiy","DocOrientationToursTimestamp":1625778000,"DocSizeGracePeriodDays":14,"EmbedStylingDisabledUrlRegexes":["^https:\\/\\/twitter.com\\/\\w+\\/status\\/\\d+(\\?.*)?(\\#.*)?$"],"EnableCallouts":"enabled","EnableCodaObjectReference":"disabled","EnableTableScrollingExperiment":"enabled","ExperimentationFrameworkEnabled":{"isEnabled":true},"FirstTableInsertTourTimestamp":1627930800,"FixTableWidthGrowCenter":"disabled","GalleryBundleMinimalInit":"enabled","GoogleOneTapSettings":{"pathEnabledRegexps":["^\\/welcome$","^\\/simple-welcome$","^$"],"sessionDurationSecs":28800},"GuidedLearningTutorialTemplateMapping":{"map":{"tutorial-basic-doc":"kA1VRUxcNU","tutorial-basic-table":"P-kONvVRcK"}},"HelpAndLearnButtonEducationEndTimestamp":1647374400,"ImageIntegrationTest":"enabled","ImportDialog":"disabled","ImproveListInCellEdit":"enabled","ImprovedEmbedPlaceholderUX":"enabled","InformationalTourLimit":3,"ManageTemplatesRenameExperiment":{"name":"E-113","state":"forcedOn","forcedOnTreatment":"ManageTemplates"},"MarkdownImporter":"disabled","MaxCalcDocSize":325,"MobileTour":"enabled","MobileWelcomeDocExperiment":{"name":"E-116","state":"forcedOn","forcedOnTreatment":"Treatment","timestamp":1662652800},"MobileWelcomeDocId":"zqUlRZPOIs","NewCopyCutLogic":"enabled","NewDragAndDropLogic":"enabled","NewSubpageDisplay":"enabled","NuxPersonalization":{"makerRoleOptions":[{"name":"Product development","icon":"product","promotedTemplateIds":["E1Z74hLVMH"],"promotedTemplateCollections":["Product teams","Meetings","Knowledge management"],"promotedCaseStudyDocIds":["IcElaeG4_u","Gi7JSZDFNr"],"starterKitDocId":"wcM736y2GN"},{"name":"Software development","icon":"engineering","promotedTemplateIds":["Gh4mLjcK3s"],"promotedTemplateCollections":["Engineering teams","Meetings"],"promotedCaseStudyDocIds":["YGvGvOqAq6","Q1mq6iFbuC"],"starterKitDocId":"YGvGvOqAq6"},{"name":"Marketing","icon":"marketing","promotedTemplateIds":["fLChMhHLgo"],"promotedTemplateCollections":["Marketing teams","Meetings"],"promotedCaseStudyDocIds":["byGa9ofZCD","HY6lD6jWOW"],"starterKitDocId":"nvZY1gxOYs"},{"name":"Strategy & leadership","icon":"leadership","promotedTemplateIds":["jt4ncS7ZIv"],"promotedTemplateCollections":["Meetings","Knowledge management"],"promotedCaseStudyDocIds":["trl4NzUguc","wEN1IdqYLN"],"starterKitDocId":"tLS6okpH3L"},{"name":"Sales","icon":"sales","promotedTemplateIds":["cHOqWKW0aH"],"promotedTemplateCollections":["Sales & success teams","Meetings"],"promotedCaseStudyDocIds":["ogIg0ZGjX5","8IbvnW8Gdc"],"starterKitDocId":"HybEepLZ7J"},{"name":"IT administration","icon":"it-administration","promotedTemplateIds":["nGikdDxtaP"],"promotedTemplateCollections":["Knowledge management"],"promotedCaseStudyDocIds":["Pc5Ebh7SjH","kmCHdkvu5Y"],"starterKitDocId":"K0bsD36xy8"},{"name":"Just flying solo","icon":"personal","promotedTemplateIds":["NHzsq4VNYq"],"promotedTemplateCollections":["Meetings"],"promotedCaseStudyDocIds":["LSSiV9qkc-","90geeCClGv"],"starterKitDocId":"pajQRWazZS"},{"name":"Something else","icon":"other","promotedTemplateIds":[],"promotedTemplateCollections":[],"promotedCaseStudyDocIds":[],"starterKitDocId":"K0bsD36xy8"}]},"PackListingV2":"disabled","PacksOauthPerPackRedirectUri":"enabled","PacksPinnedDocs":"enabled","PacksSyncTableColumnPicker":"enabled","PersonalizationExpStartTimestamp":1634671834,"PersonalizationExperiment":{"name":"E-86","state":"off"},"PersonalizationUseCaseToDocId":{"project-tracking":"pUfdy1jyNl","team-hub":"QwcI0fuL0t","collaborative-docs":"efOjuH9qma"},"PersonalizationV2ExpStartTimestamp":1646683200,"PersonalizationV2Experiment":{"name":"E-97","state":"off"},"PinnedWelcomeDocStartTimeStamp":1652914800,"PlayModeSave":"disabled","Promotions":{"forms":"off","callouts":"on","suggestChanges":"on"},"ReorderGroupedLookups":"enabled","ResizerUpdateOnImages":"disabled","ResolvedCommentsPanel":"enabled","RunawayCalcAlertThresholdMillis":300000,"RunawayCalcColumnExtrapolationThresholdMillis":60000,"SalesforceRealtimePipeSettings":{"isEnabled":true,"logErrorDetails":true,"populateContactPropsRegex":".","attachContactToAccountRegex":".","createAccountRegex":"."},"SanityExperiments":"enabled","SanitySiteHeader":"disabled","ShareNudgeTourWaitSeconds":1200,"SharedConnectionsInImporters":"disabled","SkipAggregatesOnMainThread":"enabled","SlateObjectVirtualization":"enabled","SplitScrollParent":"enabled","SplitTableRefreshCellCount":250,"SpringboardBrainstormMapping":{"map":{"Timer":"Pkbjxt8rgV","OptionsVoting":"836As5561Q","DoneReading":"p_kFApE5IC","PulseCheck":"ZN50QvBwcf","Questions":"ZQAAvxOLqf","Brainstorm":"GNCh0CSkjw"}},"SpringboardExperiment":{"name":"E-106","state":"off","timestamp":1657562400},"SpringboardProjectTrackingMapping":{"map":{"Board":"BBnxnhft-5","Calendar":"071L8mJHVX","Timeline":"y-CEkiKbN0","Detail":"UigGPAN8ks","Tasks":"0S-lKpnp-a"}},"SpringboardTeamHubMapping":{"map":{"TeamDirectory":"gh_e88HHQG","WeeklyMeetingNotes":"SskXwKa6vT","ProjectTracking":"CBo6g1t4FU","Dictionary":"u5MMue5xAc","HelpfulLinks":"1Waoos-ZYv"}},"SpringboardTemplateMapping":{"map":{"TeamHub":"6NffxzYtWp","ProjectTracking":"u7w1l6raz_","Brainstorm":"qgGQcvDe4k"}},"StickyTableHeaders":"disabled","StripeConnectCountries":[{"name":"Argentina","code":"AR","cdnFlagPath":"/external/img/flags/ar.svg"},{"name":"Australia","code":"AU","cdnFlagPath":"/external/img/flags/au.svg"},{"name":"Austria","code":"AT","cdnFlagPath":"/external/img/flags/at.svg"},{"name":"Canada","code":"CA","cdnFlagPath":"/external/img/flags/ca.svg"},{"name":"Estonia","code":"EE","cdnFlagPath":"/external/img/flags/ee.svg"},{"name":"Great Britain","code":"GB","cdnFlagPath":"/external/img/flags/gb.svg"},{"name":"Mexico","code":"MX","cdnFlagPath":"/external/img/flags/mx.svg"},{"name":"Switzerland","code":"CH","cdnFlagPath":"/external/img/flags/ch.svg"},{"name":"United States","code":"US","cdnFlagPath":"/external/img/flags/us.svg"}],"StructuredBuilderVarargsSupport":"enabled","SuppressFreeLimitDays":2,"SuppressFreeLimitWarning":"enabled","SuppressFreeLimitWarningExperiment":{"name":"E-115","state":"on","timestamp":1661904000},"TableButtonRefresh":"ENVIRONMENT_UP_TO_HEAD()","TableSearchStory":"enabled","TableVirtualizationPlaceholder":"enabled","TeachSlashCommandExperiment":{"name":"E-110","state":"off","timestamp":1660071600},"TeachSlashCommandTimestamp":300000000000,"TeachUndoRedoExperiment":{"name":"E-111","state":"off","timestamp":1660071600},"TeachUndoRedoTimestamp":1647039600,"TemplateCollections":[{"title":"Recommended","subtitle":"Jump into Coda with these templates to help you learn, work, and collaborate efficiently.","includedTemplates":["m5RpCySzp5","E1Z74hLVMH","zTo2lbhwKt","jI90LcTB3T"]},{"title":"Projects","subtitle":"Organize tasks, timelines, team members, and more with these templates that grow with you.","includedTemplates":["MFNzVUQ-Sd","b6LhvVVJTt","j5Sn7FZmMU","xge2OTvDTL","fLChMhHLgo","9060tOo0EC","b0HQi4Vcq4","OqYnVjAiRA","CcQN_EBgUT"],"subCollections":{"Manage":["MFNzVUQ-Sd","xge2OTvDTL","OqYnVjAiRA"],"Measure":["b6LhvVVJTt","j5Sn7FZmMU","9060tOo0EC","CcQN_EBgUT"],"Plan":["fLChMhHLgo","b0HQi4Vcq4"]}},{"title":"Documentation","subtitle":"Track decisions, meeting history, team info, and more.","includedTemplates":["boUpOzKqbL","SskXwKa6vT","dvT7o7YAkT","UH9ZtSIKxZ","g-0L-g0iVS","ZGm_STEyea","ESo4VW4Ykm","9jGgIc7vDR","yQkd_SBSr8","_4HbB4N6zD","7v_MJ7TrRW","HStxETUlS1","ZW9ApDT7WG","gRYZy1xRQ1","gh_e88HHQG","Q5P2UHJUl5","SNpDN2j5-W","u5MMue5xAc"],"subCollections":{"Brief":["boUpOzKqbL","dvT7o7YAkT","ZGm_STEyea","_4HbB4N6zD","7v_MJ7TrRW","ZW9ApDT7WG","gRYZy1xRQ1","SNpDN2j5-W"],"Meeting notes":["SskXwKa6vT","UH9ZtSIKxZ","g-0L-g0iVS","HStxETUlS1"],"Team hub":["ESo4VW4Ykm","9jGgIc7vDR","yQkd_SBSr8","gh_e88HHQG","Q5P2UHJUl5","u5MMue5xAc"]}},{"title":"Meetings","subtitle":"Prep, organize, and log your meetings for optimized collaboration.","includedTemplates":["4ulNkEc9zL","NQbEqGH3oM","nGikdDxtaP","0WGPokbcVj","YEr0guf2Tk","33DCrDC137","_ZoPIQwKge","xwZkAfjGEG","WDp9E5s-qe","rOkt8ZB-fI","un5Lkgv3_g","L7S0g6HQyy","k2SwLOp9Jk","__KlfY2pMM"],"subCollections":{"Decision-making":["4ulNkEc9zL","nGikdDxtaP","L7S0g6HQyy","__KlfY2pMM"],"Brainstorm":["NQbEqGH3oM","0WGPokbcVj","YEr0guf2Tk","WDp9E5s-qe","k2SwLOp9Jk"],"Status":["33DCrDC137","_ZoPIQwKge","xwZkAfjGEG","rOkt8ZB-fI","un5Lkgv3_g"]}},{"title":"Personal","subtitle":"Plan and prioritize your goals, responsibilities, and routines.","includedTemplates":["-XmbJy5Ptq","p7eiyRophV","xYqJtu33Jp","18Rf0Zcewg","dgoSl7ViAr","NHzsq4VNYq","jtyQ4HdFjI","LtTIQnPc8x","S1qsyletaM","lhik490NxS","XaObfCA1Q5","69AKyykJFv","j6QqBZBZs6","SSufVoNHAv","3RichwBO9Q","jmabH0CVrC","WMzt489o5l","jFkjmTtIlm","cunPCf2JH5","QmQzw2EfnY","JJ3JrW_YEu","h_Vf7cuXKQ","cHOqWKW0aH","QlxoRLYH2z","fiQEGl51xm","eScjRg7V3s"],"subCollections":{"Productivity":["-XmbJy5Ptq","p7eiyRophV","xYqJtu33Jp","18Rf0Zcewg","NHzsq4VNYq","lhik490NxS","XaObfCA1Q5","j6QqBZBZs6","SSufVoNHAv","3RichwBO9Q","jmabH0CVrC","WMzt489o5l","cunPCf2JH5","QmQzw2EfnY","JJ3JrW_YEu","h_Vf7cuXKQ","cHOqWKW0aH","QlxoRLYH2z","fiQEGl51xm","eScjRg7V3s"],"Entertainment":["dgoSl7ViAr","jtyQ4HdFjI","LtTIQnPc8x","S1qsyletaM","69AKyykJFv","jFkjmTtIlm"]}}],"TemplatesEmptyStateExperiment":{"name":"E-117","state":"forcedOn","forcedOnTreatment":"Treatment"},"TriggerSyncEnabled":"enabled","TutorialBuildingBlockEnabled":"disabled","UseOpensearchForPacksGallery":"enabled","UserQualificationTimestamp":1657730400,"V3Copy":"enabled","WelcomeDocId":"jI90LcTB3T","WorkspaceHomeOrientationToursTimestamp":1632945090,"YoutubeTriggersTimestamp":1652799600};
    window.documentInitContext = {};
    window.availablePacks = {};
    window.packsManifestHash = "";
    window.packAccessControlList = null;
    window.intercomHmac = "";
    window.pageHeaderData = null;
  </script><script type="text/javascript" nonce="9e10f5f613214bce8fc9204893cabc52">
        window.packsSdkVersion = "1.2.0";
        window.pageInitData = {"type":"sanity","serverSideRender":true,"sanitySlug":"for/startups","page":{"_createdAt":"2022-07-20T18:06:11Z","_id":"a0628dc1-6e39-4f50-93e0-617626db9570","_rev":"g64pjnSZ7Hl1FTIxzOvCQN","_type":"page","_updatedAt":"2022-10-27T21:18:29Z","components":[{"_key":"40dd71afadb5","disableBackground":false,"image":{"_type":"imageWithAlt","alt":"Product launch tracking template - example of a product launch task tracker in Coda","asset":{"_ref":"image-bdec72d396436338ce0a4f696c9f5769f15c3ec3-2300x1500-png","_type":"reference"}},"mediaType":"image","overlap":true,"primaryCta":{"_type":"cta","link":"/form/Coda-for-Startups_dM7AEIcWVQe?1%20Startup%20Partner%20Name=Coda%20for%20Startups","text":"Apply for startup credit"},"secondaryCta":{"_type":"cta","link":"/signup","text":"Try Coda for free"},"stacked":true,"subtitle":"A successful startup runs on efficiency. Coda is a scalable workhorse that can power every aspect of your business without draining the reserves. Apply for a $1,000 credit to run your startup on Coda.","title":"Coda for startups","type":"hero","video":null},{"_key":"8a763f18b97a","features":[{"_key":"a68b31d58159","_type":"feature","icon":{"_key":"989b299b-46cd-4de3-933a-e25ca63fd2b5","_type":"imageWithAlt","alt":"thumbs up icon","asset":{"_ref":"image-0230a8af8f337290a373a0cd1f5af069bfa67577-128x128-png","_type":"reference"}},"link":{"_type":"cta","link":"https://www.youtube.com/watch?v=YwIbhmA8E04"},"subtitle":"Don\u2019t start from scratch. Drag and drop what you need.","title":"Templates"},{"_key":"2f0f47722d7e17c40eb9beeec2e68107","_type":"feature","icon":{"_key":"f65bba87-2a78-4dae-a285-9a13b3292bc0","_type":"imageWithAlt","alt":"tables","asset":{"_ref":"image-faeb302243b57f3e340d6c8e3324d2f16a866bf2-128x128-png","_type":"reference"}},"link":{"_type":"cta","link":"https://www.youtube.com/watch?v=p8lUMNm6sSM"},"subtitle":"Maintain your team\u2019s source of truth with tables that talk to each other.","title":"Tables"},{"_key":"b835657a52b263e8033bb17a33825328","_type":"feature","icon":{"_key":"cb83a127-f501-4ec4-bb67-62682c69ba0f","_type":"imageWithAlt","alt":"views","asset":{"_ref":"image-61cc15cf8c9209f5d911039b4405b9e70a826de1-128x128-png","_type":"reference"}},"link":{"_type":"cta","link":"https://www.youtube.com/watch?v=E9RRLOsoZi0"},"subtitle":"Everyone can work off the same data, in their own preferred way.","title":"Customized views"}],"subtitle":"A set of building blocks to help your team do more, faster.","title":"Take a peek inside.","type":"features"},{"_key":"38aeedccd3c3aa9a87913789d26e7201","isSmallTitle":true,"logos":[{"_id":"f7ae78d0-db66-48da-880d-a854343eb090","image":{"_type":"imageWithAlt","alt":"Robinhood logo","asset":{"_ref":"image-00779638287c18899ffe8a1a481002cde33ed767-580x112-png","_type":"reference"}},"name":"Robinhood"},{"_id":"44a3d884-f841-4a51-88bf-4de90768a697","image":{"_type":"imageWithAlt","alt":"BuzzFeed logo","asset":{"_ref":"image-006a0f8fe83195189a48b600aab56dd9829b7272-532x112-png","_type":"reference"}},"name":"Buzzfeed"},{"_id":"40302ea8-3f2c-4ae8-bca6-12d93f246af9","image":{"_type":"imageWithAlt","alt":"Pinterest logo","asset":{"_ref":"image-540e34e4830a783b494395ef8a3b8a7dc7710e59-453x109-png","_type":"reference"}},"name":"Pinterest"},{"_id":"95098819-a297-4156-8f08-72bb7fa02ae4","image":{"_type":"imageWithAlt","alt":"Doordash logo","asset":{"_ref":"image-25e3fc4ff0fef1774385b2c2e587aeff806031fe-692x112-png","_type":"reference"}},"name":"Doordash"},{"_id":"a73ff5af-35cc-4b7c-9d3e-921e4196c2a6","image":{"_type":"imageWithAlt","alt":"Toast logo","asset":{"_ref":"image-1ac5e22afb325f509d243dff4a31e8632fe671f4-412x112-png","_type":"reference"}},"name":"Toast"},{"_id":"6500c879-a816-4ba2-91d8-985b0a5cf4af","image":{"_type":"imageWithAlt","alt":"Square logo","asset":{"_ref":"image-f057ff3a2b443e32e6d963522f35862555a87d46-412x112-png","_type":"reference"}},"name":"Square"}],"title":"Teams running on Coda","type":"logos"},{"_key":"a4fbb5345d69","image":{"_type":"imageWithAlt","alt":"quarterly process doc","asset":{"_ref":"image-dbc05d7c08f33cf33806476cca51f78622984fd7-1040x1000-png","_type":"reference"}},"isTextLeft":true,"mediaType":"video","primaryCta":null,"secondaryCta":null,"subtitle":[{"_key":"4bfc46cfb739","_type":"block","children":[{"_key":"4a0ae6a68cb80","_type":"span","marks":[],"text":"Every dollar counts. And with Coda, you\u2019ve got one line item with a million possibilities. This flexible doc gives you the tools to build whatever you can think up to serve the growing needs of your company\u2014from product development to company OKR tracking."}],"markDefs":[],"style":"normal"}],"title":"The cure for software overload.","type":"featureHighlight","video":{"_createdAt":"2022-08-09T20:25:03Z","_id":"943ac935-04dd-4a6d-8aae-954be311e293","_rev":"GYdgjvW34xMwoanQW8d2Qv","_type":"video","_updatedAt":"2022-08-17T19:46:31Z","poster":{"_type":"imageWithAlt","alt":"An animation showing Coda connecting tools into one doc - Coda brings data, words, and teams together","asset":{"_ref":"image-9c04715db1f9f29d9c9e18672e11df6cd2f5ebe1-1040x1000-png","_type":"reference"}},"title":"Tool consolidation","video":{"_type":"file","asset":{"_ref":"file-0aaeb29ed6956cfc19ebd5194823d8154f6614b4-mp4","_type":"reference"}},"videoUrl":"https://cdn.sanity.io/files/2epdaewr/production/0aaeb29ed6956cfc19ebd5194823d8154f6614b4.mp4"},"youtubeVideoId":null},{"_key":"1707beced73bd20f9c321470e327e9ac","image":{"_type":"imageWithAlt","alt":"A Coda doc - an example of a project proposal built in Coda","asset":{"_ref":"image-10a50dfa1a65dc355a97f0e859b64eb58b30d68a-1040x1000-png","_type":"reference"}},"isTextLeft":false,"mediaType":"image","primaryCta":null,"secondaryCta":null,"subtitle":[{"_key":"deff84a9a34b","_type":"block","children":[{"_key":"905a7fe09d270","_type":"span","marks":[],"text":"Updating stakeholders requires thoughtfully conveyed company vitals. That\u2019s a big ask for a startup trying to manage day-to-day functions. But! Running your business on Coda means that everything from pitches to board meetings can live in a single doc."}],"markDefs":[],"style":"normal"}],"title":"Your startup\u2019s all-in-one hub.","type":"featureHighlight","video":null,"youtubeVideoId":null},{"_key":"ac04a25bedf6","author":{"_createdAt":"2022-07-20T18:26:28Z","_id":"0f1029e5-601b-4146-9845-687bd9b2a145","_rev":"ySFEc9lscitglMggzANSGg","_type":"person","_updatedAt":"2022-08-16T14:54:03Z","avatar":{"_type":"imageWithAlt","alt":"Jamie Shostak","asset":{"_ref":"image-05a8908280d724f79690856231b61c8328d2ee2e-1000x1000-png","_type":"reference"}},"jobTitle":"Founder and Director at Appetiser","name":"Jamie Shostak"},"companyLogo":{"_type":"imageWithAlt","alt":"Appetiser logo","asset":{"_ref":"image-41140cd8bee8435f92b19cc5c19d49993025638b-2698x484-png","_type":"reference"}},"content":"There\u2019s a distinct advantage to working with a tool that\u2019s as agile as your team. Coda allowed us to meet the challenges of a growing company and ever-expanding team head-on.","type":"quote"},{"_key":"c895ce886a57","cta":{"_type":"cta","link":"/gallery?filter=packs","text":"Explore Packs"},"footerText":"Choose from hundreds of Packs in our Gallery.","packs":[{"_id":"6c2eb92d-5559-4df7-8f25-fecd4db194bd","logo":{"_type":"imageWithAlt","alt":"Microsoft Teams logo","asset":{"_ref":"image-a191f793a09626388fad2cc295604f8a1ffa209c-2203x2049-png","_type":"reference"}},"name":"Microsoft Teams","slug":"microsoft-teams-10591"},{"_id":"bdc47ee0-e0ce-48d2-9d3d-2ad8e0121346","logo":{"_type":"imageWithAlt","alt":"Figma logo","asset":{"_ref":"image-4ca1f53796dc78ccf6852ba1743440d5d57cb5da-108x162-png","_type":"reference"}},"name":"Figma","slug":"figma-1010"},{"_id":"0b09c1af-2527-43ca-8846-391c5712042f","logo":{"_type":"imageWithAlt","alt":null,"asset":{"_ref":"image-7b6ac984d6adbc6fbb2c100855747482e0e8973e-177x171-png","_type":"reference"}},"name":"Github","slug":"github-1013"},{"_id":"a788932f-5a57-4fdc-8c25-b8a4ae8e1f12","logo":{"_type":"imageWithAlt","alt":"Zoom logo","asset":{"_ref":"image-0293cfe90944e2d737b31976af72064345adccf8-523x535-png","_type":"reference"}},"name":"Zoom","slug":"zoom-1017"},{"_id":"c25f73eb-ccf7-474b-854b-0eb59e72b3a9","logo":{"_type":"imageWithAlt","alt":"Slack logo","asset":{"_ref":"image-a7a93b0793396e2550e1140aac6754791fcdc88e-144x144-png","_type":"reference"}},"name":"Slack","slug":"slack-1000"},{"_id":"d1ecf421-e87b-46b4-be00-15ff63262f26","logo":{"_type":"imageWithAlt","alt":"Gmail logo","asset":{"_ref":"image-79c8a380c5a076c9822020eac5e42bcd1df564af-686x512-png","_type":"reference"}},"name":"Gmail","slug":"gmail-1004"},{"_id":"e9c1be64-42ac-437c-958c-87518182d12c","logo":{"_type":"imageWithAlt","alt":"Jira logo","asset":{"_ref":"image-66d3a9ba68fd0d99bd8e365c7589654e84bfdd34-400x400-png","_type":"reference"}},"name":"Jira","slug":"jira-1052"},{"_id":"3d6d67e1-401f-420c-86b6-072c95fb4b9c","logo":{"_type":"imageWithAlt","alt":"Asana logo","asset":{"_ref":"image-a228b2c62569337b4602f9454d611f7207f3522d-2400x2219-png","_type":"reference"}},"name":"Asana","slug":"asana-11512"}],"subtitle":"With Packs and integrations via Zapier, you can connect your doc with the other apps you use. Manage your storefront from your doc with the Shopify Pack. Or have your doc send content marketing campaigns with the Gmail Pack.","title":"Plays nicely with your tools.","type":"packs"},{"_key":"7474291c7158","subtitle":"With Coda, you can create docs for team, product, and knowledge management with ease.","title":"The doc that can do it all.","type":"useCases","useCases":[{"_key":"4adc477d3bb3","_type":"useCase","icon":{"_type":"imageWithAlt","alt":null,"asset":{"_ref":"image-22b3b634190393222f36919c2634e9163da10aa9-48x48-png","_type":"reference"}},"image":{"_type":"imageWithAlt","alt":"A Team Hub in Coda - includes a list of teammates and details for projects the team is working on.","asset":{"_ref":"image-4338c9775d5f5dccb6a3a4fd17284a8cf771643d-2300x1500-jpg","_type":"reference"}},"title":"Team hub","url":"/@mattwoods/team-hub"},{"_key":"34681bddd9d1","_type":"useCase","icon":{"_type":"imageWithAlt","alt":"project tracker icon","asset":{"_ref":"image-28ccaf730c6989b805c607f9484b95cffdeeddae-192x192-png","_type":"reference"}},"image":{"_type":"imageWithAlt","alt":"Project timelines in Coda - displays projects in a calendar view, a project list with status, owner, due dates and flags.","asset":{"_ref":"image-68a01bdddaf09ac2ec67c14e1ea30ca6b2428cec-2300x1500-jpg","_type":"reference"}},"title":"Project tracker","url":"/@syc/tracker-template"},{"_key":"885bf1eab0c1","_type":"useCase","icon":{"_type":"imageWithAlt","alt":null,"asset":{"_ref":"image-994394df7e8b0b0afa904cdc49e2b95d1ec3ece4-48x48-png","_type":"reference"}},"image":{"_type":"imageWithAlt","alt":"A product launch proposal in Coda - problem statement, solution statement, and an embedded Figma design doc.","asset":{"_ref":"image-b2958887701237e51570fc7fc2492e2175c35160-2300x1500-jpg","_type":"reference"}},"title":"Brief","url":"/@codatemplates/two-way-writeup"}]},{"_key":"482b76f2535a","awards":[{"_key":"6746293f0343","_type":"imageWithAlt","alt":"G2 badge awarded to Coda for Easiest To Do Business, Enterprise, Summer 2022","asset":{"_ref":"image-7e3a30522812961db95b97d1e5f82fe52d2f3e12-770x1000-png","_type":"reference"}},{"_key":"b3284f5e16c3","_type":"imageWithAlt","alt":"G2 badge awarded to Coda for Leader in Small Business, Summer 2022","asset":{"_ref":"image-c6b5e6b3b44e4119ef8e94c39f5064736d87d5d8-770x1000-png","_type":"reference"}},{"_key":"a6559990d24b","_type":"imageWithAlt","alt":"G2 badge awarded to Coda for High Performer, Enterprise, Summer 2022","asset":{"_ref":"image-33c2fa73cc903659ac579d56ff25ad94ef12c77d-770x1000-png","_type":"reference"}},{"_key":"af0756e9c824","_type":"imageWithAlt","alt":"G2 badge awarded to Coda for Momentum Leader, Summer 2022","asset":{"_ref":"image-4083ca150e514039b6e6cadea45a5ee61aa6787d-770x1000-png","_type":"reference"}}],"cta":{"_type":"cta","link":"/case-studies","text":"See how teams use Coda"},"subtitle":"Come for the roadmaps, project and goal trackers, and team wikis. Stay for the flexibility of an all-in-one doc that does much more.","title":"Coda is a leader in 10 different software categories thanks to our reviewers.","type":"awards"},{"_key":"2f4bbfb977c2","docs":[{"_id":"66c1afb9-0907-4fed-941f-e353325c3003","author":{"_createdAt":"2022-07-01T14:58:16Z","_id":"3df0f42d-88f2-4c0a-bb99-de524c080688","_rev":"685ykcMqzRFNQj9js49Ujz","_type":"person","_updatedAt":"2022-08-23T15:10:16Z","avatar":{"_type":"imageWithAlt","alt":"Lane Shackleton, Head of Product & Design at Coda","asset":{"_ref":"image-177ea5e8befcd7bf54515ce057dac78b579ffa89-1000x1000-png","_type":"reference"}},"jobTitle":"Head of Product & Design at Coda","name":"Lane Shackleton"},"coverImage":{"_type":"imageWithAlt","alt":null,"asset":{"_ref":"image-7ef38e92727d74654a8c00a2a4cde2bdf4c2fe2f-3840x960-png","_type":"reference"}},"docLink":"/@lshackleton/two-way-writeups-coda-s-secret-to-shipping-fast","docTitle":"Two-way writeups: Coda's secret to shipping fast"},{"_id":"a3957df6-adce-4fb9-92d8-9a6249436e95","author":{"_createdAt":"2022-08-09T23:59:11Z","_id":"4c20b8ce-fc96-4ea6-85ee-6fd9371a5dee","_rev":"GYdgjvW34xMwoanQW39sgb","_type":"person","_updatedAt":"2022-08-16T15:20:11Z","avatar":{"_type":"imageWithAlt","alt":"rahul vohra","asset":{"_ref":"image-476f8df0478534444d63f8f9c94e4d3cbbd4e3fe-1000x1000-png","_type":"reference"}},"jobTitle":"Founder & CEO at Superhuman","name":"Rahul Vohra"},"coverImage":{"_type":"imageWithAlt","alt":null,"asset":{"_ref":"image-977abc2e3aa8ce9d70fff0512fbfbd0e123c12a0-1000x1000-png","_type":"reference"}},"docLink":"/@rahulvohra/superhuman-product-market-fit-engine","docTitle":"The Superhuman Product/Market Fit Engine"},{"_id":"a8d88b4b-51f4-44eb-b7e2-d1a7f9f21905","author":{"_createdAt":"2022-08-10T01:06:41Z","_id":"450c8638-1522-427f-8925-3f2f7166e34b","_rev":"JiYRATWGq3CTtfga6IbJ9N","_type":"person","_updatedAt":"2022-08-16T20:55:47Z","avatar":{"_type":"imageWithAlt","alt":"jessica liu","asset":{"_ref":"image-b934ddc7f4bb5794433824adedb5b1cf41cdbedf-1000x1000-png","_type":"reference"}},"jobTitle":"Learning designer at Canva","name":"Jessica Liu"},"coverImage":{"_type":"imageWithAlt","alt":null,"asset":{"_ref":"image-ec0c93778779c3099cf3737ef11052a4de2ca97e-1000x1000-png","_type":"reference"}},"docLink":"/@jessica-liu/how-canva-trained-800-employees-to-fuel-a-6-billion-growth-spurt","docTitle":"How Canva trained its employees to fuel a $6B growth spurt"}],"primaryCta":{"_type":"cta","link":"/gallery","text":"Explore the Gallery"},"secondaryCta":null,"subTitle":"Being a startup doesn\u2019t mean starting from scratch. Our Gallery is full of innovative playbooks published by some of the most inventive thinkers and makers out there. Docs like these are ready and waiting to be copied and applied to your business.","title":"Blueprints for success. ","type":"docs"},{"_key":"ca7ce8417a8ce3438728e20760851c52","author":{"_createdAt":"2022-07-27T01:06:23Z","_id":"eb8b3de1-6c56-4699-97b7-a8ee8fd98a8e","_rev":"GYdgjvW34xMwoanQW3x6nd","_type":"person","_updatedAt":"2022-08-16T19:31:47Z","avatar":{"_type":"imageWithAlt","alt":"Kerry Wang","asset":{"_ref":"image-045c88cd798075525e059b21d3abb3741b10a30c-1000x1000-png","_type":"reference"}},"jobTitle":"CEO of Searchlight","name":"Kerry Wang"},"companyLogo":{"_type":"imageWithAlt","alt":"Searchlight","asset":{"_ref":"image-1c414f2e397c43c160ca3e9bc5c89c7dd1ca1751-1238x238-png","_type":"reference"}},"content":"I know with Coda the performance is going to be there, it\u2019s going to scale with us, and people enjoy using it. If they enjoy using it, it reinforces the culture I want us to have.","type":"quote"},{"_key":"262c31ae719e","primaryCta":{"_type":"cta","link":"https://coda.io/form/Coda-for-Startups_dM7AEIcWVQe?1%20Startup%20Partner%20Name=Coda%20for%20Startups&utm_source=coda&utm_medium=generated_doc&utm_campaign=Coda%2520for%2520X","text":"Apply for startup credit"},"secondaryCta":{"_type":"cta","link":"/signup","text":"Try Coda for free"},"subtitle":[{"_key":"6473c589a3f7","_type":"block","children":[{"_key":"b798ea7d686f0","_type":"span","marks":[],"text":"Ready for a tool that scales with your startup? Apply for the $1,000 credit or contact sales to get your team started in Coda. Of course, you can always dive right in and get started with Coda for free today."}],"markDefs":[],"style":"normal"}],"title":"Get started your way.","type":"dualCta"}],"metadata":{"description":"A successful startup runs on efficiency. Learn how Coda can power your business without draining the reserves. Apply for a $1,000 startup credit.","image":{"_type":"image","asset":{"_ref":"image-0078acc43c059d6ce6fee6be9dfa9dabc5060427-1200x630-png","_type":"reference"}},"noIndex":false,"title":"Coda for startups, Coda startup credit - Coda"},"pageSettings":{"_type":"pageSettings","background":{"_type":"image","asset":{"_ref":"image-7e4ce897f179e2020e91cbe81482b32ec2f1581f-3360x2232-svg","_type":"reference"}},"disableNavLinks":false},"pageTag":{"_ref":"8827d3d5-49f3-4948-8b2e-8296adca56b0","_type":"reference"},"slug":{"_type":"slug","current":"for/startups"},"title":"Coda for startups"},"experimentPages":[],"experiment":null,"sanityPageId":"a0628dc1-6e39-4f50-93e0-617626db9570","sanityPageRev":"g64pjnSZ7Hl1FTIxzOvCQN","isPreview":false};
        window.pageHeaderData = null;
        window.isPrerender = false;
        window.recaptchaOptions = {useRecaptchaNet: true};
      </script><script nonce="9e10f5f613214bce8fc9204893cabc52" src="https://cdn.coda.io/assets/external-cms.c0f2cbdeba5e5ca5487c.entry.js" crossorigin="anonymous"></script></body></html>