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: <>⛏ Start Building, imageUrl: "developing/programming-model/overview", description: ( <>Get started building your decentralized app or marketplace. ), }, { title: <>🎛 Run a Validator Node, imageUrl: "running-validator", description: ( <>Validate transactions, secure the network, and earn rewards. ), }, { title: <>🏛 Create an SPL Token, imageUrl: "https://spl.solana.com/token", description: <>Launch your own SPL Token, Solana's equivalent of ERC-20., }, { title: <>🏦 Integrate an Exchange, imageUrl: "integrations/exchange", description: ( <> Follow our extensive integration guide to ensure a seamless user experience. ), }, { title: <>📲 Manage a Wallet, imageUrl: "wallet-guide", description: ( <>Create a wallet, check your balance, and learn about wallet options. ), }, { title: <>🤯 Learn How Solana Works, imageUrl: "cluster/overview", description: <>Get a high-level understanding of Solana's architecture., }, // // { // title: <>Understand Our Economic Design, // imageUrl: "implemented-proposals/ed_overview/ed_overview", // 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 && (
Announcing the Solana Season Hackathon
Jumpstart your next project on Solana & join the fastest growing ecosystem in crypto
{features.map((props, idx) => ( ))}
)}
); } export default Home;