Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating the home page #529

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 17 additions & 20 deletions src/components/HomepageFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,51 +19,48 @@ type FeatureItem = {

const FeatureList: FeatureItem[] = [
{
title: "Generate Key Shares",
image: "/img/noun_Key.png",
alt: "Image copyright Turkkub, courtesy of the Noun Project",
title: "Learn",
image: "/img/CharonLogo.svg",
alt: "Charon Distributed Validator Client Logomark",
description: (
<>
The <Link to="https://launchpad.obol.org/">Distributed Validator Launchpad</Link> is
an interface to enable distributed key generation for Distributed
Validators.
Understand how Charon powers Obol distributed validators.
</>
),
link: "/next/learn/intro/launchpad",
link: "/learn/charon/intro",
},
{
title: "Deploy Distributed Validators",
image: "/img/CharonLogo.svg",
alt: "Charon Distributed Validator Client Logomark",
title: "Run a DV",
image: "/img/noun_ethereum.png",
alt: "Image courtesy of the Noun Project",
description: (
<>
<Link to="/next/learn/charon/intro">Charon</Link> is a Distributed Validator Client for running Ethereum validators in a fault tolerant manner.
Jump straight into our quickstart guides.
</>
),
link: "/next/learn/charon/intro",
link: "/run/start/quickstart_overview",
},
{
title: "Build on the Obol Network",
image: "/img/noun_ethereum.png",
title: "Advanced Guides",
image: "/img/noun_laboratory.png",
alt: "Image courtesy of the Noun Project",
description: (
<>
<Link to="/next/learn/intro/obol-splits">Obol Splits</Link> are smart contracts for the distribution of rewards from Distributed Validators.
Use the SDK, migrate existing validators, and more.
</>
),
link: "/next/learn/intro/obol-splits",
link: "/adv/advanced/quickstart-sdk",
},
{
title: "Earn Contributions",
title: "Community & Governance",
image: "/img/noun_gardening.png",
alt: "Image courtesy of the Noun Project",
description: (
<>
Run Distributed Validators on mainnet and take part in Obol's{" "}
<Link to="https://obol.org/contributions">Contributions Program.</Link>
Info on Obol’s governance, RAF, token, Techne Credential, and Staking Mastery program.
</>
),
link: "/next/run/start/quickstart_overview",
link: "/gov/governance/collective",
},
];

Expand Down