src/applications/gi/updated-gi/components/Homepage.jsx
import React from 'react';
import LinkWithDescription from './LinkWithDescription';
const HomePage = () => {
return (
<div className="vads-u-margin-bottom--8">
<h1 data-testid="comparison-tool-title">GI BillĀ® Comparison Tool</h1>
<p
className="vads-u-color--gray-dark vads-u-font-family--serif vads-u-margin-bottom--4"
data-testid="comparison-tool-description"
>
Discover how your GI Bill benefits can support your education. Search
and compare approved schools, employers, exams, licenses, and
certifications to see how much your VA benefits can help cover.
</p>
<div className="vads-u-display--flex flex-container">
<LinkWithDescription
text="Schools and employers"
description="Search and compare public and private schools. Filter by on-the-job training, apprenticeships, and more."
link="/schools-and-employers"
/>
<LinkWithDescription
text="Licenses and certifications"
description="Search for licenses, certifications, and prep courses. You can submit a form to get reimbursed."
/>
<LinkWithDescription
text="National Exams"
description="Take national exams such as SAT, ACT, GRE, GMAT, and more. You can submit a form to get reimbursed."
/>
</div>
</div>
);
};
export default HomePage;