import React from "react"; import clsx from "clsx"; import Layout from "@theme/Layout"; import Link from "@docusaurus/Link"; import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; import useBaseUrl from "@docusaurus/useBaseUrl"; import styles from "./styles.module.css"; const features = [ { title: <>Run a Validator, imageUrl: "docs/running-validator/README", description: <>Learn how to start a validator on the Solana cluster., }, { title: <>Launch an Application, imageUrl: "docs/apps/README", description: <>Build superfast applications with one API., }, { title: <>Participate in Tour de SOL, imageUrl: "docs/tour-de-sol/README", description: ( <> Participate in our incentivised testnet and earn rewards by finding bugs. ), }, { title: <>Integrate the SOL token into your Exchange, imageUrl: "docs/integrations/exchange", description: ( <> Follow our extensive integration guide to ensure a seamless user experience. ), }, { title: <>Create or Configure a Solana Wallet, imageUrl: "docs/wallet-guide/README", description: ( <> Whether you need to create a wallet, check the balance of your funds, or take a look at what's out there for housing SOL tokens, start here. ), }, { title: <>Learn About Solana's Architecture, imageUrl: "docs/cluster/README", description: ( <> Familiarize yourself with the high level architecture of a Solana cluster. ), }, // // { // title: <>Understand Our Economic Design, // imageUrl: "docs/implemented-proposals/ed_overview/README", // description: ( // <> // Solana's Economic Design provides a scalable blueprint for long term // economic development and prosperity. // // ), // } ]; function Feature({ imageUrl, title, description }) { const imgUrl = useBaseUrl(imageUrl); return (
{imgUrl && (

{title}

{description}

)}
); } function Home() { const context = useDocusaurusContext(); const { siteConfig = {} } = context; return ( {/*
*/} {/*

{siteConfig.title}

{siteConfig.tagline}

*/} {/*
Get Started
*/} {/*
*/} {/*
*/}
{features && features.length > 0 && (
{features.map((props, idx) => ( ))}
)}
); } export default Home;