department-of-veterans-affairs/vets-website

View on GitHub
src/applications/survivor-dependent-education-benefit/22-5490/components/FormFooter.jsx

Summary

Maintainability
C
7 hrs
Test Coverage
import React from 'react';
import { CONTACTS } from '@department-of-veterans-affairs/component-library/contacts';

export default function FormFooter() {
  return (
    <>
      <div className="row">
        <div className="usa-width-two-thirds medium-8 columns">
          <div className="help-footer-box">
            <h2 className="help-heading">Need help?</h2>
            <div className="help-talk">
              <p className="vads-u-margin-top--0">
                If you need help with your application or have questions about
                enrollment or eligibility, submit a request with{' '}
                <a target="_blank" href="https://ask.va.gov/" rel="noreferrer">
                  Ask VA.
                </a>
              </p>
              <p className="vads-u-margin-bottom--0">
                If you have technical difficulties using this online
                application, call our MyVA411 main information line at{' '}
                <va-telephone contact={CONTACTS.VA_411} /> (
                <va-telephone contact={CONTACTS['711']} tty />
                ). We’re here 24/7.
              </p>
            </div>
          </div>
        </div>
      </div>
    </>
  );
}