UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
IntroVideo.vue 2.49 KiB
Newer Older
Graham Smith's avatar
Graham Smith committed
<template>
hunter.congress's avatar
hunter.congress committed
  <div class="intro-video container pt-0 mt-0">
Graham Smith's avatar
Graham Smith committed
    <div class="row mb-xl-3 justify-content-center">
hunter.congress's avatar
hunter.congress committed
      <h2 class="col-12 py-0 intro-padding">
        What can Platform One do for you?
      </h2>
Graham Smith's avatar
Graham Smith committed
    </div>

hunter.congress's avatar
hunter.congress committed
    <div class="container pa-0 padding-video-section">
Graham Smith's avatar
Graham Smith committed
      <div class="row justify-content-center">
Graham Smith's avatar
Graham Smith committed
        <div class="col-lg-6 col-md-8 order-lg-2">
          <v-responsive :aspect-ratio="16 / 9" min-height="200">
hunter.congress's avatar
hunter.congress committed
            <video
              width="100%"
              poster="@/assets/images/P1_Into_Thumbnail.jpg"
              controls
            >
              <source
Luke Glasscock's avatar
Luke Glasscock committed
                src="https://repo1.dso.mil/platform-one/bullhorn-delivery-static-assets/-/raw/master/p1/PlatformOne-90sec-Initial-V1-1.mp4"
                type="video/mp4"
              />
              Your browser does not support the video tag.
            </video>
Graham Smith's avatar
Graham Smith committed
          </v-responsive>
Graham Smith's avatar
Graham Smith committed
        </div>

hunter.congress's avatar
hunter.congress committed
        <div class="col-lg-6 text-left px-12 d-flex pt-6">
          <div class="row">
            <span>
              Platform One (P1) is a modern cloud-era platform that provides
              valuable tooling, hosts
              <Tooltip
                text="CI/CD"
                tooltip="Continuous Integration / Continuous Delivery"
              />
              <Tooltip
                text="DevSecOps"
                tooltip="Development, Security, and Operations"
              />
              pipelines, and offers a secure Kubernetes platform for hosting
              microservices.
              <br />
              <br />

              Authorization to go live with your application can be achieved
              faster than ever by using Iron Bank hardened containers and P1
              pipeline security tools. The resulting Certificate to Field (CtF)
              and Continuous Authority to Operate (cATO) provides developers the
              ability to push validated code into production on an ongoing
              basis. This results in shorter development cycles, less debugging,
              and more rapid feature development.
            </span>
          </div>
Graham Smith's avatar
Graham Smith committed
        </div>
      </div>
    </div>
  </div>
</template>
<script>
import Tooltip from "@/components/Base/Tooltip";
Graham Smith's avatar
Graham Smith committed
export default {
  name: "IntroVideo",
Luke Glasscock's avatar
Luke Glasscock committed
  components: { Tooltip }
Graham Smith's avatar
Graham Smith committed
};
</script>
<style lang="scss" scoped>
hunter.congress's avatar
hunter.congress committed
.intro-padding {
  margin-top: 58px;
}
.padding-video-section{
  margin-top: 23px;
}
Graham Smith's avatar
Graham Smith committed
.intro-video {
  .p1-logo {
    max-height: 180px;
    max-width: 180px;
    margin-bottom: 2rem;
  }
}
</style>