department-of-veterans-affairs/vets-website

View on GitHub
src/applications/burials-ez/components/IntroductionPage.jsx

Summary

Maintainability
A
1 hr
Test Coverage
import React, { useEffect } from 'react';
import PropTypes from 'prop-types';
import SaveInProgressIntro from 'platform/forms/save-in-progress/SaveInProgressIntro';
import FormTitle from '@department-of-veterans-affairs/platform-forms-system/FormTitle';
import { focusElement } from '@department-of-veterans-affairs/platform-utilities/ui';

const IntroductionPage = ({ route }) => {
  useEffect(() => {
    focusElement('.va-nav-breadcrumbs-list');
  }, []);

  return (
    <div className="schemaform-intro vads-u-margin-bottom--6">
      <FormTitle title="Apply for a Veterans burial allowance and transportation benefits" />
      <p className="vads-u-font-size--h3 vads-u-margin-bottom--0 vads-u-margin-top--neg3">
        Application for Burial Benefits (VA Form 21P-530EZ)
      </p>
      <h2 className="vads-u-font-size--h2">
        Follow these steps to apply for a burial allowance and transportation
        benefits
      </h2>
      <va-process-list uswds>
        <va-process-list-item header="Check your eligibility">
          <p className="vads-u-margin-bottom--0">
            Make sure you meet our eligibility requirements before you apply.
          </p>
          <va-link
            href="/burials-memorials/veterans-burial-allowance"
            text="Find out if you're eligible for a Veterans burial allowance and transportation benefits"
          />
        </va-process-list-item>
        <va-process-list-item header="Gather your information">
          <p>
            <strong>
              You’ll need this information about the deceased Veteran:
            </strong>
          </p>
          <ul>
            <li>Social Security number or VA file number</li>
            <li>Date and place of birth</li>
            <li>Date and place of death</li>
            <li>Military service history</li>
            <li>Date of burial</li>
            <li>Final resting place</li>
          </ul>
          <p>
            And we’ll ask for your personal information. This includes your
            Social Security number, date of birth, mailing address, and contact
            information.
          </p>
          <p>
            <strong>
              You may also need to provide copies of these documents:
            </strong>
          </p>
          <ul>
            <li>
              The Veteran’s death certificate including the cause of death
            </li>
            <li>
              An itemized receipt for transportation costs (only if you paid
              transportation costs for the Veteran’s remains)
            </li>
          </ul>
          <p>
            We also recommend providing a copy of the Veteran’s DD214 or other
            separation documents including all their service periods.
          </p>
          <p>
            If you don’t have their DD214 or other separation documents, you can
            request these documents now.
            <br />
            <va-link
              href="/records/get-military-service-records/"
              text="Learn more about requesting military service records"
            />
          </p>
          <p>
            And if you’re claiming a burial allowance for a service-connected
            death, you can submit additional supporting documents (like medical
            records).
            <br />
            <va-link
              href="/get-help-from-accredited-representative/"
              text="Find out which supporting documents you can submit with your application"
            />
          </p>
          <p>
            <strong>What if I need help with my application?</strong>
          </p>
          <p>
            An accredited representative, like a Veterans Service Organization
            (VSO), can help you fill out your application.
            <br />
            <va-link
              href="/get-help-from-accredited-representative/"
              text="Learn more about getting help from an accredited representative"
            />
          </p>
        </va-process-list-item>
        <va-process-list-item header="Apply">
          <p>
            We’ll take you through each step of the process. It should take
            about 30 minutes.
          </p>
        </va-process-list-item>
        <va-process-list-item header="After you apply">
          <p>
            We’ll contact you by mail if we need more information. Once we
            process your application, we’ll mail you a letter with our decision.
          </p>
        </va-process-list-item>
      </va-process-list>
      <SaveInProgressIntro
        headingLevel={2}
        prefillEnabled={route.formConfig.prefillEnabled}
        pageList={route.pageList}
        downtime={route.formConfig.downtime}
        startText="Start the burial allowance and transportation benefits application"
      />
      <div className="omb-info--container vads-u-margin-top--3 vads-u-padding-left--0">
        <va-omb-info
          res-burden={30}
          omb-number="2900-0003"
          exp-date="08/31/2025"
        />
      </div>
    </div>
  );
};

IntroductionPage.propTypes = {
  route: PropTypes.shape({
    pageList: PropTypes.array,
    formConfig: PropTypes.shape({
      prefillEnabled: PropTypes.bool,
      downtime: PropTypes.object,
    }),
  }),
  router: PropTypes.object,
};

export default IntroductionPage;