Skip to content

Commit

Permalink
add Intersect
Browse files Browse the repository at this point in the history
  • Loading branch information
katomm committed Apr 12, 2024
1 parent 5916fa5 commit 85861b3
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 15 deletions.
10 changes: 7 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const config = {
},
*/
{
title: 'Partners',
title: 'Entities',
items: [
{
label: 'Cardano Foundation',
Expand All @@ -177,8 +177,12 @@ const config = {
to: '/partners?tab=emurgo',
},
{
label: 'IOG',
href: '/partners?tab=iog', /* TODO: last entry should be "more", then link to the partners page */
label: 'Input Output',
href: '/partners?tab=iog',
},
{
label: 'Intersect',
href: '/partners?tab=intersect', /* TODO: last entry could be "more", then link to the partners page */
},
],
},
Expand Down
20 changes: 13 additions & 7 deletions src/components/HomePartnersSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,25 @@ function LogoWithLink({ imageName, label, link }) {
const PartnerItemList = [
{
imageName: "cardanofoundation",
label: "Explore the Foundation",
label: "About the Cardano Foundation",
link: "/partners?tab=cardanofoundation",
},
{
imageName: "emurgo",
label: "About EMURGO",
link: "/partners?tab=emurgo",
},
{
imageName: "iog",
label: "Learn about Input Output Global",
label: "About Input Output",
link: "/partners?tab=iog",
},
{
imageName: "emurgo",
label: "Find out about EMURGO",
link: "/partners?tab=emurgo",
imageName: "intersect",
label: "About Intersect",
link: "/partners?tab=intersect",
},

];

function PartnerItem({ imageName, label, link }) {
Expand All @@ -56,9 +62,9 @@ function PartnerItem({ imageName, label, link }) {
export default function HomePartnersSection() {
return (
<section className={styles.partnerSection}>
<Divider text="Partners" />
<Divider text="Entities" />
<TitleWithText
description="A decentralized team works across three independent entities to ensure that Cardano stays true to its purpose as we advance and evolve."
description="Multiple independent entities collaborate within a decentralized team framework to drive Cardano forward, ensuring that it remains aligned with its core mission as it progresses and develops. These are a few of them:"
titleType="none"
headingDot={false}
/>
Expand Down
10 changes: 9 additions & 1 deletion src/components/PartnersOverviewSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { useLocation } from "@docusaurus/router";
// This component:
// Shows a tab list on the left with some swapable content on the right.
// FIXME: <br /><br /> are a bit hacky.
// TODO: Intersect missing

// Partners data
const partnersData = {
Expand Down Expand Up @@ -45,6 +44,15 @@ const partnersData = {
"Input Output is a research and engineering company and venture studio that builds blockchain and Web3 products to empower everyone, everywhere.<br /><br />Founded by Charles Hoskinson and Jeremy Wood, Input Output was one of the three pioneer entities behind Cardano, originally contracted to design, build, and help maintain the Cardano platform. A fully decentralized company, Input Output is comprised of dynamic, innovative teams– based all over the world, collectively committed to innovation through delivering the highest standards in software engineering based on rigorous peer-to-peer reviewed science.<br /><br />Input Output is a leader in building distributed computing systems and decentralized technology solutions. The company continues to research and build new paradigms and products in the field of distributed ledger technology and the architecture of Web3. Input Output is committed to open-source principles, and ethical, purpose-driven business, creating technology to benefit the many, not the few. Just like the Cardano Foundation and EMURGO, driving blockchain education is core to Input Output’s philosophy. IO Research is focused on promoting the academic study of blockchain, supported by a team of educators, academic partners, and specially developed courses.",

},
{
partners_item_label: "Intersect",
partners_item_category: "Member based organization",
partners_item_image: "intersect",
partners_item_link: "https://intersectmbo.org",
partners_item_body:
"Intersect is a not-for-profit member-based organization for the Cardano ecosystem. Intersect acts as a champion for distributed development and is committed to empowering the Cardano community to build together and drive the blockchain forward. Our mission is to ensure, through our members, the lasting continuity and progressive development of Cardano - fostering a self-sustaining ecosystem that’s fit-for-purpose, perpetually future-proof, resilient, secure, and transparent.<br /><br />Enablement is a key foundation of this work, providing the necessary inclusive contributory opportunities to allow every member of Intersect to have their voice heard. By providing additional governance processes and structure, from maintenance to development and testing to fundraising, Intersect enables the community to continue to advance the protocol",

},
],
},
};
Expand Down
7 changes: 3 additions & 4 deletions src/pages/partners.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ function HomepageHeader() {
const { siteTitle } = "useDocusaurusContext()";
return (
<SiteHero
title="Our Partners"
description="A decentralized team works across many entities to
ensure that Cardano stays true to its purpose as we advance and evolve."
title="Entities"
description="Several independent entities collaborate to advance Cardano, ensuring it stays true to its mission."
bannerType="zoomBlueRed"
/>
);
Expand All @@ -27,7 +26,7 @@ export default function Home() {
<HomepageHeader />
<main>
<BoundaryBox>
<Divider text="Partners" />
<Divider text="Entities" />
<PartnersOverviewSection />
</BoundaryBox>
<SpacerBox size="medium" />
Expand Down
3 changes: 3 additions & 0 deletions static/img/logos/intersect-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions static/img/logos/intersect-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions static/img/logos/intersect.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 85861b3

Please sign in to comment.