Skip to content

DS-746 | @ericbakenhus | Additional copy changes #422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 30, 2024
Merged
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
92 changes: 49 additions & 43 deletions src/pages/citizenship.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,50 +30,56 @@ const ForeignSourceReporting = ({ data }) => {
/>
</Helmet>
<CreateStories stories={[oodLocalHeader]} />
<CenteredContainer>
<Heading level="h1" classes="su-mt-2 su-text-align-center">
Thank you for your recent gift
</Heading>
<p>
The federal government requires institutions of higher education, such
as Stanford, to report gifts from a donor who is not a U.S. citizen
when that donor makes gifts and other payments to Stanford with an
aggregate value of $250,000 or more in a calendar year. Stanford must
also report gifts and other payments received from a donor who has
citizenship in one of certain specific countries (the list may change
over time, and currently includes China (not including Hong Kong),
Russia, Iran, and North Korea), when that donor makes gifts and other
payments to Stanford having an aggregate value of $50,000 or more
during a reporting period that runs from July 1 to June 30 of the
following year. Your generous gift(s) meet one or both of these
reporting thresholds. Thank you for providing your information below.
</p>
<p>
You can find additional details about this policy in section V of
Stanford’s Gift Policy website:{' '}
<SbLink
linkType="url"
link={{
url: 'https://giving.stanford.edu/gift-policy',
<main id="main-content">
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added main. Skip nav expects it to exist.

<CenteredContainer classes="su-max-w-800">
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tossed a max width on the text to get closer to meeting 1.4.8. It's technically AAA, but it seemed like a good idea.

<Heading level="h1" classes="su-mt-2 su-text-align-center">
Thank you for your recent gift
</Heading>
<p>
The federal government requires institutions of higher education,
such as Stanford, to report gifts and other payments from a donor
who is not a U.S. citizen when that donor makes gifts and other
payments to Stanford with an aggregate value of $250,000 or more in
a calendar year. Stanford must also report gifts and other payments
received from a donor who is associated with one of certain specific
countries (the list, which may change over time, currently includes
China (while excluding Hong Kong), Russia, Iran, and North Korea),
when that donor makes gifts and other payments to Stanford having an
aggregate value of $50,000 or more during a reporting period that
runs from July 1 to June 30 of the following year. Because your
generous gift(s) meet one or both of these reporting thresholds, we
ask that you please provide the information requested below. Thank
you.
</p>
Comment on lines +38 to +53
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy changes.

<p>
You can find additional details about this policy in section V of
Stanford’s{' '}
<SbLink
linkType="url"
link={{
url: 'https://giving.stanford.edu/gift-policies/',
}}
>
Gift Policy website
</SbLink>
Comment on lines +57 to +64
Copy link
Member Author

@ericbakenhus ericbakenhus May 30, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix link and make text descriptive.

.
</p>
</CenteredContainer>
<div>
<iframe
title="Citizenship form for foreign source reporting"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added title to iframe so we meet 4.1.2.

className="airtable-embed"
src={`https://airtable.com/embed/appssF3RJFHENkFV5/pagMeYcyTjtVgfsl4/form`}
frameBorder="0"
style={{
background: 'transparent',
width: '100%',
height: '1000px',
}}
>
https://giving.stanford.edu/gift-policy
</SbLink>
</p>
</CenteredContainer>
<div>
<iframe
className="airtable-embed"
src={`https://airtable.com/embed/appssF3RJFHENkFV5/pagMeYcyTjtVgfsl4/form`}
frameBorder="0"
style={{
background: 'transparent',
width: '100%',
height: '1000px',
}}
allowtransparency="true"
/>
</div>
allowtransparency="true"
/>
</div>
</main>
<CreateStories stories={[oodLocalFooter, globalFooter]} />
</>
);
Expand Down
Loading