<template>
  <div class="services">
    <PageHeader title="PLATFORM ONE SERVICES" />

    <h2>
      PLATFORM ONE ENTERPRISE SERVICES
    </h2>

    <p class="section-description mx-auto px-8 mt-4">
      Platform One provides additional pay-per-use services and contract
      vehicles to facilitate teams' adoption and move to DevSecOps. The list of
      services will continuously evolve.
    </p>

    <div class="container text-left">
      <div class="row ">
        <div class="col-lg-5">
          <h4>CUSTOM DEVELOPMENT SERVICES</h4>
          <div class="pl-4 pr-16">
            <ul>
              <li>
                Build and deliver new and accredited custom software
                applications (microservices) by leveraging the Platform One
                pipeline and following Platform One's DoD Continuous Authority
                to Operate (cATO) (pay per app)
              </li>
              <li>
                To learn more about these capabilities, please contact
                <a
                  href="mailto:af.cso@us.af.mil?subject=Platform One Custom Development Services Question"
                >
                  af.cso@us.af.mil
                </a>
                with Subject: "Platform One Custom Development Services
                Question"
              </li>
            </ul>
          </div>
        </div>
        <div class="col-lg-5">
          <h4>CLOUD NATIVE ACCESS POINT (CNAP)</h4>
          <div class="pl-4 pr-16">
            <ul>
              <li>
                The Cloud Native Acess Point is available on Cloud One to
                provide access to Development, Testing, and Production enclaves
                at IL-2, IL-4, and IL-5 that use Platform One DevSecOps
                environments by using an internet-facing Cloud-native Zero
              </li>
              <!-- <li>
              CNAP diagram <a href="TODO/somewhere" target="_blank">here</a>
            </li> -->
              <li>
                To learn more about these capabilities, please contact
                <a
                  href="mailto:af.cso@us.af.mil?subject=Platform One CNAP Question"
                >
                  af.cso@us.af.mil
                </a>
                with Subject: "Platform One CNAP Question"
              </li>
            </ul>
          </div>
        </div>
      </div>

      <div class="row">
        <div class="col-lg-5">
          <h4>
            PLATFORM ONE CONTINUOUS INTEGRATION / CONTINUOUS DELIVERY (CI/CD)
            WITH INFRASTRUCTURE AS CODE (IaC)
          </h4>
          <div class="pl-4 pr-16">
            <ul>
              <li>
                Teams can use existing CI/CD pipelines hosted on Repo One with
                their current Infrastructure as Code (IaC) code
              </li>
              <li>
                If a custom CI/CD pipeline is needed due to specific program
                mission needs, check out the
                <router-link to="/products/big-bang">Big Bang</router-link>
                options
              </li>
              <li>
                To learn more about these capabilities, please contact
                <a
                  href="mailto:af.cso@us.af.mil?subject=Platform One CI/CD Options Question"
                >
                  af.cso@us.af.mil
                </a>
                with Subject: "Platform One CI/CD Options Question"
              </li>
            </ul>
          </div>
        </div>
        <div class="col-lg-6">
          <h4>PLATFORM ONE DEVSECOPS MANAGED TOOLS</h4>
          <div class="pl-4 pr-16">
            <ul>
              <li>
                Platform One Enterprise Chat provides a collaboration solutions
                suitable for connecting developer teams (pay per use): IL-4
                (.mil email only)
                <ExternalLink inline href="https://chat.collab.cdl.af.mil">
                  https://chat.collab.cdl.af.mil
                </ExternalLink>
              </li>
              <li>
                Platform One ABMS All Domain Common Environment (pay per use)
              </li>
              <li>
                Platform One Multi-Level Security Data Transfer (CDS/Diode) (pay
                per use)
              </li>
              <li>
                Platform One Stack Exchange: knowledge sharing service for
                software developers and engineers (pay per use)
              </li>
              <li>
                To learn more about these capabilities, please contact
                <a
                  href="mailto:af.cso@us.af.mil?subject=Platform One Managed Tools Question"
                >
                  af.cso@us.af.mil
                </a>
                with Subject: "Platform One Managed Tools Question"
              </li>
            </ul>
          </div>
        </div>
      </div>

      <div class="row">
        <div class="col-lg-5">
          <h4>PLATFORM ONE TRAINING AND ONBOARDING OPTIONS</h4>
          <div class="pl-4 pr-16">
            <ul>
              <li>
                <p>Check out the CSO DevSecOps / DAU training:</p>
                <ExternalLink
                  inline
                  class="white-space-nowrap"
                  href="https://software.af.mil/training/"
                >
                  DevSecOps Training Resources
                </ExternalLink>
              </li>
              <li>
                <ExternalLink
                  inline
                  class="white-space-nowrap"
                  href="https://learn-2.galvanize.com/cohorts/fbc9761c8f97c752ea"
                >
                  Virtual Platform One Learning Hub
                </ExternalLink> 
                that provides self-service onboarding
              </li>
              <li>
                1-day training Session: Introduction to DevSecOps. Overview and
                understanding of the vision and activities
              </li>
              <li>
                <router-link
                  class="white-space-nowrap"
                  to="/products/abms-adce/onboarding"
                >
                  Onboarding options for ABMS ADCE Party Bus
                </router-link>
              </li>
              <li>
                A 
                <router-link
                  class="white-space-nowrap"
                  to="/products/abms-adce/onboarding/3-day-workshop"
                >
                  3-day Platform One Platform Workshop.
                </router-link>
                Hands-on code and User-Centered Design (UCD) to create your first Platform One DevSecOps pipelines and deploy a "push button" DoD DevSecOps software factory
              </li>
              <li>
                To learn more about these capabilities, please contact
                <a
                  href="mailto:af.cso@us.af.mil?subject=Platform One Training Question"
                >
                  af.cso@us.af.mil
                </a>
                with Subject: "Platform One Training Question"
              </li>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
<script>
import PageHeader from "@/components/PageHeader";
import ExternalLink from "@/components/ExternalLink";

export default {
  name: "Services",
  components: { PageHeader, ExternalLink },
};
</script>
<style lang="scss" scoped>
.services {
  margin-bottom: 2rem;

  h6 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .container {
    .row {
      justify-content: center;
    }
  }

  ul {
    & > li {
      margin-bottom: 1rem;
    }
  }
  @include lg-up {
    .section-description {
      max-width: 60%;
    }
  }
  @include md-down {
    h4 > br {
      display: none;
    }
  }
}
</style>