department-of-veterans-affairs/vets-website

View on GitHub
src/applications/sco/components/MainContent/Update/TrainingAndWebinar.jsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import MainContentSubDiv from '../../HubRail/shared/mainContentSubDiv';
import LiSpanAndVaLinkAndPTag from '../../HubRail/shared/liSpanAndVaLinkAndPTag';

const TrainingAndWebinar = () => {
  return (
    <MainContentSubDiv
      id="trainings-and-webinars"
      header="Trainings and webinars"
    >
      <LiSpanAndVaLinkAndPTag
        href="https://www.benefits.va.gov/gibill/resources/education_resources/school_certifying_officials/online_sco_training.asp"
        hrefText="Training requirements"
        pText="Essential training for VA student enrollment certifications and compliance."
      />
      <LiSpanAndVaLinkAndPTag
        href="https://vba-tpss.vbatraining.org/assess/trkSignIn?refid=XSCO"
        hrefText="SCO training portal"
        pText="Access to the training portal for school officials."
      />
      <LiSpanAndVaLinkAndPTag
        href="https://www.benefits.va.gov/gibill/resources/education_resources/school_certifying_officials/presentations.asp"
        hrefText="Office hours and webinars"
        pText="Join our office hours and webinars for information on the GI Bill, related legislation, and processes."
      />
      <LiSpanAndVaLinkAndPTag
        href="https://public.govdelivery.com/accounts/USVAVBA/subscriber/new"
        hrefText="Sign up for trainings, webinars, and office hour updates"
        pText="Subscribe to the GovDelivery mailing list to receive updates and other routine communications from Education Service about trainings, office hours, and more."
      />
      <LiSpanAndVaLinkAndPTag
        href="https://www.benefits.va.gov/gibill/resources/education_resources/school_certifying_officials/gov-delivery.asp"
        hrefText="GovDelivery Message Archive"
        pText="Access past GovDelivery messages on the archive page."
      />
    </MainContentSubDiv>
  );
};

export default TrainingAndWebinar;