Add Hackathon banner (#15004)
This commit is contained in:
@ -10,21 +10,21 @@ const features = [
|
|||||||
{
|
{
|
||||||
title: <>⛏ Start Building</>,
|
title: <>⛏ Start Building</>,
|
||||||
imageUrl: "developing/programming-model/overview",
|
imageUrl: "developing/programming-model/overview",
|
||||||
description: <>Get started building your decentralized app or marketplace.</>,
|
description: (
|
||||||
|
<>Get started building your decentralized app or marketplace.</>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: <>🎛 Run a Validator Node</>,
|
title: <>🎛 Run a Validator Node</>,
|
||||||
imageUrl: "running-validator",
|
imageUrl: "running-validator",
|
||||||
description: <>Validate transactions, secure the network, and earn rewards.</>,
|
description: (
|
||||||
|
<>Validate transactions, secure the network, and earn rewards.</>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: <>🏛 Create an SPL Token</>,
|
title: <>🏛 Create an SPL Token</>,
|
||||||
imageUrl: "https://spl.solana.com/token",
|
imageUrl: "https://spl.solana.com/token",
|
||||||
description: (
|
description: <>Launch your own SPL Token, Solana's equivalent of ERC-20.</>,
|
||||||
<>
|
|
||||||
Launch your own SPL Token, Solana's equivalent of ERC-20.
|
|
||||||
</>
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: <>🏦 Integrate an Exchange</>,
|
title: <>🏦 Integrate an Exchange</>,
|
||||||
@ -40,19 +40,13 @@ const features = [
|
|||||||
title: <>📲 Manage a Wallet</>,
|
title: <>📲 Manage a Wallet</>,
|
||||||
imageUrl: "wallet-guide",
|
imageUrl: "wallet-guide",
|
||||||
description: (
|
description: (
|
||||||
<>
|
<>Create a wallet, check your balance, and learn about wallet options.</>
|
||||||
Create a wallet, check your balance, and learn about wallet options.
|
|
||||||
</>
|
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: <>🤯 Learn How Solana Works</>,
|
title: <>🤯 Learn How Solana Works</>,
|
||||||
imageUrl: "cluster/overview",
|
imageUrl: "cluster/overview",
|
||||||
description: (
|
description: <>Get a high-level understanding of Solana's architecture.</>,
|
||||||
<>
|
|
||||||
Get a high-level understanding of Solana's architecture.
|
|
||||||
</>
|
|
||||||
),
|
|
||||||
}, //
|
}, //
|
||||||
// {
|
// {
|
||||||
// title: <>Understand Our Economic Design</>,
|
// title: <>Understand Our Economic Design</>,
|
||||||
@ -90,10 +84,7 @@ function Home() {
|
|||||||
const context = useDocusaurusContext();
|
const context = useDocusaurusContext();
|
||||||
const { siteConfig = {} } = context;
|
const { siteConfig = {} } = context;
|
||||||
return (
|
return (
|
||||||
<Layout
|
<Layout title="Homepage" description="Solana Documentation">
|
||||||
title="Homepage"
|
|
||||||
description="Solana Documentation"
|
|
||||||
>
|
|
||||||
{/* <header className={clsx("hero hero--primary", styles.heroBanner)}> */}
|
{/* <header className={clsx("hero hero--primary", styles.heroBanner)}> */}
|
||||||
{/* <div className="container">
|
{/* <div className="container">
|
||||||
<h1 className="hero__title">{siteConfig.title}</h1>
|
<h1 className="hero__title">{siteConfig.title}</h1>
|
||||||
@ -114,6 +105,22 @@ function Home() {
|
|||||||
{features && features.length > 0 && (
|
{features && features.length > 0 && (
|
||||||
<section className={styles.features}>
|
<section className={styles.features}>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
|
<div class="alert alert--primary" role="alert">
|
||||||
|
<b>Announcing the Solana x Serum Hackathon</b>
|
||||||
|
<br />
|
||||||
|
Register today and join leaders from Circle, Aave, SushiSwap,
|
||||||
|
and more!
|
||||||
|
<br />
|
||||||
|
<a
|
||||||
|
href="https://solana.com/defi"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<button class="button button--outline button--secondary">
|
||||||
|
Register Now
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
<div className="row cards__container">
|
<div className="row cards__container">
|
||||||
{features.map((props, idx) => (
|
{features.map((props, idx) => (
|
||||||
<Feature key={idx} {...props} />
|
<Feature key={idx} {...props} />
|
||||||
|
Reference in New Issue
Block a user