Skip to content

Commit

Permalink
Merge pull request #47 from cardano-foundation/staging
Browse files Browse the repository at this point in the history
Merge PR #46 into main
  • Loading branch information
katomm authored Apr 25, 2024
2 parents 54eaf4e + 768622e commit 751c0f4
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 17 deletions.
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ const config = {
href: '/partners?tab=iog',
},
{
label: 'Intersect',
href: '/partners?tab=intersect', /* TODO: last entry could be "more", then link to the partners page */
label: 'More entities',
href: '/partners?tab=intersect',
},
],
},
Expand Down
34 changes: 20 additions & 14 deletions src/components/DiscoverUsSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import styles from "./styles.module.css";
import Link from "@docusaurus/Link";
import useBaseUrl from "@docusaurus/useBaseUrl";
import SpacerBox from "@site/src/components/Layout/SpacerBox";

//
// See Us, Know Us, Join Us
Expand Down Expand Up @@ -48,35 +49,40 @@ export default function DiscoverUsSection({}) {
to={"/partners/?tab=cardano-foundation#partners-section"}
/>
<p>
An independent standards body based in Switzerland with core
responsibilities to oversee and supervise the development of Cardano
and its ecosystem. The Cardano Foundation works to drive adoption,
shape blockchain governance, set commercial standards, and support
the community of Cardano users.
The Cardano Foundation is an independent, Swiss-based not-for-profit organization. The Foundation is tasked with advancing the public digital infrastructure Cardano and works to anchor it as a utility for financial and social systems, thus empowering the digital architects of the future.<br /><br />The Foundation facilitates the worldwide advancement of Cardano in enterprise applications. It develops infrastructure tooling—including where there may not be an immediate commercial use case—plus strengthens operational resilience, and drives diversity of on-infrastructure use cases as well as the development of sound and representative governance.
</p>

<LogoLink
imageName={"emurgo-white"}
to={"/partners/?tab=emurgo#partners-section"}
/>
<p>
EMURGO is the enterprise arm of Cardano, operating to boost the
platform through commercial ventures. EMURGO develops, supports, and
incubates commercial opportunities and helps integrate businesses
into our decentralized blockchain system.
EMURGO is a blockchain technology company and a founding entity of the Cardano blockchain that provides products and services to drive the adoption of Cardano’s Web3 ecosystem. Established in 2015 in Japan, EMURGO's mission is to facilitate commercial adoption through dynamic partnerships with existing ecosystem members and the seamless integration of new entrants.
</p>

<LogoLink
imageName={"iog-white"}
to={"/partners/?tab=iog#partners-section"}
/>
<p>
This is the technology and engineering company contracted to design,
build, and maintain the Cardano platform. Founded by Charles
Hoskinson and Jeremy Wood, IOG is committed to innovation through
rigorous peer-to-peer scientific review and the highest standards of
assurance in software development.
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.
</p>
<LogoLink
imageName={"intersect-white"}
to={"/partners/?tab=intersect#partners-section"}
/>
<p>
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.
</p>
<LogoLink
imageName={"pragma-white"}
to={"/partners/?tab=pragma#partners-section"}
/>
<p>
PRAGMA is a member-based, not-for-profit open source Association for blockchain software projects. It aims to foster an alternative open-source ecosystem for Cardano and beyond. A team of passionate software engineers from various backgrounds who build open-source tools for developers aiming for mass adoption.
</p>

<SpacerBox size="medium" />
</div>
</div>
</div>
Expand Down
5 changes: 5 additions & 0 deletions src/components/HomePartnersSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ const PartnerItemList = [
label: "About Intersect",
link: "/partners?tab=intersect",
},
{
imageName: "pragma",
label: "About PRAGMA",
link: "/partners?tab=pragma",
},

];

Expand Down
9 changes: 9 additions & 0 deletions src/components/PartnersOverviewSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ const partnersData = {
"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",

},
{
partners_item_label: "PRAGMA",
partners_item_category: "Not-for-profit Swiss Association",
partners_item_image: "pragma",
partners_item_link: "https://pragma.builders",
partners_item_body:
"PRAGMA is a member-based, not-for-profit open source Association for blockchain software projects. It aims to foster an alternative open-source ecosystem for Cardano and beyond. A team of passionate software engineers from various backgrounds who build open-source tools for developers aiming for mass adoption.<br /><br />By delivering solutions in small steps, PRAGMA intend to involve other builders to create strong open-source communities. Projects under PRAGMA are open to contributions and will onboard those who want to get involved.",

},
],
},
};
Expand Down
3 changes: 3 additions & 0 deletions src/pages/discover-cardano.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import ImageWithText from "@site/src/components/Layout/ImageWithText";
import DiscoverUsSection from "@site/src/components/DiscoverUsSection";
import BackgroundWrapper from "@site/src/components/Layout/BackgroundWrapper";
import BoundaryBox from "../components/Layout/BoundaryBox";
import SpacerBox from "../components/Layout/SpacerBox";

function HomepageHeader() {
const { siteTitle } = "useDocusaurusContext()";
Expand Down Expand Up @@ -139,6 +140,8 @@ export default function Home() {
id={"opportunity"}
/>
</BoundaryBox>

<SpacerBox size="medium" />
</main>
</Layout>
);
Expand Down
2 changes: 1 addition & 1 deletion 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.
13 changes: 13 additions & 0 deletions static/img/logos/pragma-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 751c0f4

Please sign in to comment.