Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
heroHeadText,
heroIcon,
heroInfoContainer,
heroContextContainer
heroContextContainer,
} from './afg-hero.module.scss';

export default function AfgHero() {
Expand All @@ -28,7 +28,12 @@ export default function AfgHero() {
<div className={heroMainText}>The Latest Data on Federal Revenue, Spending, Deficit, and the National Debt</div>
<div className={heroSubText}>Understand the Basics of Federal Finances from the U.S. Treasury Department</div>
</div>
<img src={'/images/AFG-Hero-Statue-of-Liberty.png'} aria-label="Statue of Liberty." className={heroLibertyImage} />
<img
src={'/images/AFG-Hero-Statue-of-Liberty.png'}
aria-label="Statue of Liberty."
className={heroLibertyImage}
alt="Statue of Liberty with blue sky."
/>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const DiveDeeperIntoTheDebt = () => {
<LearnMoreSection links={debtLearnMoreLinks} description={description} />
</div>
<div className={diveDeeperQuoteRight}>
<img src={benFranklin} alt="" />
<img src={benFranklin} alt="Benjamin Franklin with lines coming from his mouth to show he is speaking. " />
<div>
<div className={diveDeeperQuote}>“Rather go to bed without dinner than to rise in debt.”</div>
<div className={diveDeeperCitation}>Benjamin Franklin, statesman, civic leader, and diplomat</div>
Expand All @@ -34,7 +34,7 @@ const DiveDeeperIntoTheDebt = () => {
</div>
<div className={diveDeeperCitation}>Alexander Hamilton, 1st U.S. Treasury Secretary</div>
</div>
<img src={alexanderHamilton} alt="" />
<img src={alexanderHamilton} alt="Alexander Hamilton with lines coming from his mouth to show he is speaking. " />
</div>
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,16 @@ const SavingsBondsAreFullyMatured: FunctionComponent = () => {
Imagine you bought a series EE bond 30 years ago for $500. After 20 years, it doubled in value ($1,000) and continued to earn interest
($600) until reaching maturity after 30 years.
</div>
<img src={illustration1} className={image1} alt="" />
<img src={illustration1} className={image1} alt="A smiling woman with a new savings bond certificate and a few gold coins." />
</div>
<div className={holdingBondsRight}>
<img src={illustration2} alt="" />
<img
src={illustration2}
alt={
'The same woman, now unboxing more gold coins resulting from redeeming a fully matured ' +
'savings bond. She is smiling and clapping her hands.'
}
/>
<div>
If you redeem your bond today, you can redeem it for $1,600 and spend that on goods or services or reinvest that money in a new savings
bond.
Expand All @@ -120,7 +126,14 @@ const SavingsBondsAreFullyMatured: FunctionComponent = () => {
If you hold onto that bond and don’t redeem it for another 10 years, it will still be worth $1,600, but the same goods and services you
would have purchased 10 years ago now cost $2,050, effectively losing you $450 in value.
</div>
<img src={illustration3} className={image3} alt="" />
<img
src={illustration3}
className={image3}
alt={
'The same woman with her hand on her chin as she is thinking. Some of the gold coins are ' +
'flying away, symbolizing how value disappears from fully matured savings bonds that go unredeemed.'
}
/>
</div>

<p className={holdingBondsFooter}>*Please note this visual uses fictional data</p>
Expand Down
Loading