-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
docs - new homepage (#29793) * refactor: new home page * refactor: line lengths and meta description * docs: removed text section * refactor: links label and comments * chore: removed comment * refactor: removed page (cherry picked from commit 5441645) Co-authored-by: Nick Frostbutter <[email protected]>
- Loading branch information
1 parent
9625e9d
commit dea65f4
Showing
5 changed files
with
108 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from "react"; | ||
import Card from "./Card"; | ||
|
||
export default function HomeCtaLinks() { | ||
return ( | ||
<div className="container"> | ||
<div className="row cards__container"> | ||
<Card | ||
to="developers" | ||
header={{ | ||
label: "Developers", | ||
translateId: "cta-developers", | ||
}} | ||
/> | ||
|
||
<Card | ||
to="running-validator" | ||
header={{ | ||
label: "Validators", | ||
translateId: "cta-validators", | ||
}} | ||
/> | ||
|
||
<Card | ||
to="cluster/overview" | ||
header={{ | ||
label: "Architecture", | ||
translateId: "cta-architecture", | ||
}} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
slug: / | ||
id: home | ||
title: Home | ||
sidebar_label: Home | ||
description: | ||
"Solana is a high performance network that is utilized for a range of use cases, \ | ||
including finance, NFTs, payments, and gaming." | ||
# displayed_sidebar: introductionSidebar | ||
--- | ||
|
||
# Solana Documentaion | ||
|
||
Solana is a blockchain built for mass adoption. It's a high performance network that is utilized for | ||
a range of use cases, including finance, NFTs, payments, and gaming. Solana operates as a single | ||
global state machine, and is open, interoperable and decentralized. | ||
|
||
## Getting started | ||
|
||
Dive right into Solana to start building or setup your tooling. | ||
|
||
- [Setup local environment](/cli) - Install the Solana CLI to get your local development environment setup | ||
- [Hello World in your browser](getstarted/hello-world) - Build and deploy your first on-chain Solana program, | ||
directly in your browser using Solana Playground | ||
|
||
## Start learning | ||
|
||
Build a strong understanding of the core concepts that make Solana different from other blockchains. | ||
|
||
- [Transactions](./developing/programming-model/transactions) - Collection of instructions for the blockchain to execute | ||
- [Accounts](./developing/programming-model/accounts) - Data and state storage mechanism for Solana | ||
- [Programs](./developing/intro/programs) - The executable code used to perform actions on the blockchain | ||
- [Cross-Program Invocation](./developing/programming-model/calling-between-programs) - Core of the "composability" | ||
of Solana, this is how programs can "call" each other. | ||
|
||
## Understanding the architecture | ||
|
||
Get to know the underlying architecture of how the proof-of-stake blockchain works. | ||
|
||
- [Validators](./validator/anatomy) - the individual nodes that are the backbone of the network | ||
- [Clusters](./cluster/overview) - a collection of validators that work together for consensus | ||
|
||
## Running a validator | ||
|
||
Explore what it takes to operate a Solana validator and help secure the network. | ||
|
||
- [System requirements](./running-validator/validator-reqs) - Recommended hardware requirements and expected SOL | ||
needed to operate a validator | ||
- [Quick start guide](./running-validator/validator-start) - Setup a validator and get connected to a cluster | ||
for the first time | ||
|
||
## Learn more | ||
|
||
import HomeCtaLinks from "../components/HomeCtaLinks"; | ||
|
||
<HomeCtaLinks /> |
This file was deleted.
Oops, something went wrong.
dea65f4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!