function IntegrationsHeader()

in src/pages/integrations.js [9:30]


function IntegrationsHeader() {
  const {siteConfig} = useDocusaurusContext();
  return (
    <header className="header-integrations header-homepage">
      <div className="container">
        <div className="row">
          <div className="col-lg-5">
            <h1>Apache CloudStack <br/><strong>Integrations</strong></h1>
            <p className="px18 my-4 text-center text-lg-start">
              Apache CloudStack is a comprehensive infrastructure-as-a-service (IaaS)
              cloud computing solution that offers extensive integration options to
              seamlessly align with your technology stack.
            </p>
            <div className="center-buttons">
            </div>
          </div>
          <div className="col-lg-7"><img src="/img/oss_vs_css_integration_illustration.png" className="img-fluid" alt=""/></div>
        </div>
      </div>
    </header>
  );
}