diff --git a/src/components/grid-aware/TextHeader/TextHeader.module.css b/src/components/grid-aware/TextHeader/TextHeader.module.css index 16878031..c81ab9b0 100644 --- a/src/components/grid-aware/TextHeader/TextHeader.module.css +++ b/src/components/grid-aware/TextHeader/TextHeader.module.css @@ -68,6 +68,20 @@ margin-top: 15px; } +.description > :not(:first-child) { + margin-top: 15px; +} + +/* We want this to have higher specificity than the :not(:first-child) selector + * above, so we attach the pseudoclass to the element name. */ +.description > br:not(:first-child) { + margin-top: 0; +} + +.description > h2 { + font: var(--font-body-large); +} + @media (--tablet-and-down) { .description { margin-top: 20px; diff --git a/src/components/grid-aware/TextHeader/TextHeader.tsx b/src/components/grid-aware/TextHeader/TextHeader.tsx index c98362e1..4a8299ed 100644 --- a/src/components/grid-aware/TextHeader/TextHeader.tsx +++ b/src/components/grid-aware/TextHeader/TextHeader.tsx @@ -4,7 +4,7 @@ import * as s from "./TextHeader.module.css"; type TextHeaderProps = { title: string; - description?: string; + description?: React.ReactNode; large?: boolean; hasBottomPadding?: boolean; }; diff --git a/src/pages/about/form-990-2022.pdf b/src/pages/about/form-990-2022.pdf new file mode 100644 index 00000000..7be609f0 Binary files /dev/null and b/src/pages/about/form-990-2022.pdf differ diff --git a/src/pages/about/index.tsx b/src/pages/about/index.tsx index f00e2373..397c0306 100644 --- a/src/pages/about/index.tsx +++ b/src/pages/about/index.tsx @@ -4,10 +4,12 @@ import BaseHead from "../../components/BaseHead"; import ArticleSpotlightCard from "../../components/grid-aware/ArticleSpotlightCard"; import ImageHeader from "../../components/grid-aware/ImageHeader"; import Spacer from "../../components/grid-aware/Spacer"; +import TextHeader from "../../components/grid-aware/TextHeader"; import TwoParagraphBlock from "../../components/grid-aware/TwoParagraphBlock"; import Layout from "../../components/layout"; import articleSpotlightImage from "../images/laura-barerra-vera-cropped.png"; import darcelJackson from "./darcel-jackson.png"; +import form990_2022 from "./form-990-2022.pdf"; import teamImage from "./sheltertech-team.png"; export default () => ( @@ -62,6 +64,27 @@ export default () => ( alt: "Team members posing for a group photo.", }} /> + +

2022

+ +
+

+ ShelterTech is a 501(c)(3) tax-exempt organization. All donations to + ShelterTech are tax-exempt to the extent allowed by law. For more + information about our financial statements, please contact{" "} + info@sheltertech.org +

+ + } + /> +