|
| 1 | +import React from 'react'; |
| 2 | +import { graphql } from 'gatsby'; |
| 3 | +import { Helmet } from 'react-helmet'; |
| 4 | +import CreateStories from '../utilities/createStories'; |
| 5 | +import Heading from '../components/partials/heading'; |
| 6 | +import CenteredContainer from '../components/partials/centeredContainer'; |
| 7 | +import SbLink from '../components/partials/sbLink'; |
| 8 | + |
| 9 | +const ForeignSourceReporting = ({ data }) => { |
| 10 | + const oodLocalHeader = { |
| 11 | + ...data?.header, |
| 12 | + content: JSON.parse(data?.header.content), |
| 13 | + }; |
| 14 | + const oodLocalFooter = { |
| 15 | + ...data?.footer, |
| 16 | + content: JSON.parse(data?.footer.content), |
| 17 | + }; |
| 18 | + const globalFooter = { |
| 19 | + ...data?.globalFooter, |
| 20 | + content: JSON.parse(data?.globalFooter.content), |
| 21 | + }; |
| 22 | + |
| 23 | + return ( |
| 24 | + <> |
| 25 | + <Helmet> |
| 26 | + <title>Foreign Source Reporting</title> |
| 27 | + <meta |
| 28 | + name="description" |
| 29 | + content="Foreign Source Reporting form for Stanford Giving." |
| 30 | + /> |
| 31 | + </Helmet> |
| 32 | + <CreateStories stories={[oodLocalHeader]} /> |
| 33 | + <CenteredContainer> |
| 34 | + <Heading level="h1" classes="su-mt-2 su-text-align-center"> |
| 35 | + Thank you for your recent gift |
| 36 | + </Heading> |
| 37 | + <p> |
| 38 | + The federal government requires institutions of higher education, such |
| 39 | + as Stanford, to report gifts from a donor who is not a U.S. citizen |
| 40 | + when that donor makes gifts and other payments to Stanford with an |
| 41 | + aggregate value of $250,000 or more in a calendar year. Stanford must |
| 42 | + also report gifts and other payments received from a donor who has |
| 43 | + citizenship in one of certain specific countries (the list may change |
| 44 | + over time, and currently includes China (not including Hong Kong), |
| 45 | + Russia, Iran, and North Korea), when that donor makes gifts and other |
| 46 | + payments to Stanford having an aggregate value of $50,000 or more |
| 47 | + during a reporting period that runs from July 1 to June 30 of the |
| 48 | + following year. Your generous gift(s) meet one or both of these |
| 49 | + reporting thresholds. Thank you for providing your information below. |
| 50 | + </p> |
| 51 | + <p> |
| 52 | + You can find additional details about this policy in section V of |
| 53 | + Stanford’s Gift Policy website:{' '} |
| 54 | + <SbLink |
| 55 | + linkType="url" |
| 56 | + link={{ |
| 57 | + url: 'https://giving.stanford.edu/gift-policy', |
| 58 | + }} |
| 59 | + > |
| 60 | + https://giving.stanford.edu/gift-policy |
| 61 | + </SbLink> |
| 62 | + </p> |
| 63 | + </CenteredContainer> |
| 64 | + <div> |
| 65 | + <iframe |
| 66 | + className="airtable-embed" |
| 67 | + src={`https://airtable.com/embed/appssF3RJFHENkFV5/pagMeYcyTjtVgfsl4/form`} |
| 68 | + frameBorder="0" |
| 69 | + style={{ |
| 70 | + background: 'transparent', |
| 71 | + width: '100%', |
| 72 | + height: '1000px', |
| 73 | + }} |
| 74 | + allowtransparency="true" |
| 75 | + /> |
| 76 | + </div> |
| 77 | + <CreateStories stories={[oodLocalFooter, globalFooter]} /> |
| 78 | + </> |
| 79 | + ); |
| 80 | +}; |
| 81 | + |
| 82 | +export const query = graphql` |
| 83 | + query { |
| 84 | + header: storyblokEntry(field_component: { eq: "oodLocalHeader" }) { |
| 85 | + id |
| 86 | + content |
| 87 | + } |
| 88 | + footer: storyblokEntry(field_component: { eq: "oodLocalFooter" }) { |
| 89 | + id |
| 90 | + content |
| 91 | + } |
| 92 | + globalFooter: storyblokEntry(field_component: { eq: "globalFooter" }) { |
| 93 | + id |
| 94 | + content |
| 95 | + } |
| 96 | + } |
| 97 | +`; |
| 98 | + |
| 99 | +export default ForeignSourceReporting; |
0 commit comments