Skip to content

Commit

Permalink
Integrate PartnersAndSponsorsBlock component onto home page (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
candywang authored and David Agustin committed Nov 3, 2020
1 parent 8787696 commit 0a06494
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions src/pages/new/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
import React from "react";

import PartnersAndSponsorsBlock from "../../components/grid-aware/PartnersAndSponsorsBlock";
import benetechLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/benetech-logo.png";
import ciscoLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/cisco-logo.png";
import justiceAndDiversityCenterLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/justice-and-diversity-center-logo.png";
import larkinStreetLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/larkin-street-logo.png";
import mohcdLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/mohcd-logo.png";
import pagerdutyLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/pagerduty-logo.png";
import sfFamiliesLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/sf-families-logo.png";
import uberLogo from "../../components/grid-aware/PartnersAndSponsorsBlock/stories/uber-logo.png";
import ThreeParagraphBlock from "../../components/grid-aware/ThreeParagraphBlock";
import image1 from "../../components/grid-aware/ThreeParagraphBlock/stories/image1.png";
import image2 from "../../components/grid-aware/ThreeParagraphBlock/stories/image2.png";
Expand Down Expand Up @@ -44,5 +53,45 @@ export default () => (
{ text: "Work with us", onClick: () => {} },
]}
/>
<PartnersAndSponsorsBlock
title="Partners and sponsors"
partnersAndSponsors={[
{
url: mohcdLogo,
alt:
"Logo of Mayor's Office of Housing and Community Development organization.",
},
{
url: justiceAndDiversityCenterLogo,
alt:
"Logo of Justice and Diversity Center of The Bar Association of San Francisco organization.",
},
{
url: benetechLogo,
alt: "Logo of Benetech nonprofit organization.",
},
{
url: larkinStreetLogo,
alt: "Logo of Larkin Street Youth Services nonprofit organization.",
},
{
url: sfFamiliesLogo,
alt:
"Logo of SF Families online public service directory organization.",
},
{
url: ciscoLogo,
alt: "Logo of Cisco Systems networking hardware company.",
},
{
url: pagerdutyLogo,
alt: "Logo of PagerDuty computer software company.",
},
{
url: uberLogo,
alt: "Logo of Uber Technologies Inc. company.",
},
]}
/>
</Layout>
);

0 comments on commit 0a06494

Please sign in to comment.