chore: update content

This commit is contained in:
jinhojang6 2023-12-01 02:46:15 +09:00
parent 5bb039668c
commit 3825d9a5e5
11 changed files with 24 additions and 12 deletions

13
docs/about.md Normal file
View File

@ -0,0 +1,13 @@
---
title: About
sidebar_position: 1
description: Logos is a grassroots movement to create a self-sovereign network state.
---
Logos is a fully decentralised, privacy-preserving, and politically neutral technology stack that provides the necessary support for self-sovereign virtual territories.
The stack includes three modular, blockchain-based protocols: Nomos (consensus), Codex (storage), and Waku (messaging). Combined, they provide the technical foundation for cyber states, parallel societies, network states, or any borderless public institution based on voluntary consent.
Logos is also a collection of learning communities that will govern and sustain the network in the spirit of the original cypherpunks. Together they form the grassroots movement needed to build the social, economic, and governing institutions that will live on the technology stack.
Eventually, these institutions will populate a competitive marketplace that can fill gaps in governance in the real world, providing trust-minimised, corruption-resistant public services wherever the internet can reach.

View File

@ -1,6 +1,6 @@
---
title: Comms
sidebar_position: 4
sidebar_position: 5
description: Waku is the peer-to-peer communication layer for the Logos Network.
---

View File

@ -1,6 +1,6 @@
---
title: Consensus
sidebar_position: 3
sidebar_position: 4
description: Nomos is a privacy-preserving, sovereign, modular blockchain that will serve as the trustless agreements layer for the Logos Network.
---

View File

@ -1,6 +1,6 @@
---
title: Culture
sidebar_position: 7
sidebar_position: 8
description: Logos is a grassroots collective unified in protecting human rights and defending against tyranny through technology.
---

View File

@ -1,12 +1,10 @@
---
title: History
sidebar_position: 1
sidebar_position: 2
description: Logos is a grassroots movement to create a self-sovereign network state.
---
Logos is a grassroots movement to create a self-sovereign network state.
Such an organism—existing independently but in parallel to nation states under the cover of strong encryption—is a latent dream in the seminal imagination of science fiction, cypherpunk, and crypto-anarchist thinking.
A self-sovereign virtual territory —existing independently but in parallel to nation states under the cover of strong encryption—is a latent dream in the seminal imagination of science fiction, cypherpunk, and crypto-anarchist thinking.
In 1994 leading crypto-anarchist Timothy May [observed](https://groups.csail.mit.edu/mac/classes/6.805/articles/crypto/cypherpunks/may-virtual-comm.html) how the combination of unbreakable public key cryptography and virtual communities would disrupt the nature of socioeconomic systems. In his view, personal computers, the expansion of the world wide web, functional pseudonymity, and digital cash would empower the creation of private, self-sustaining virtual communities. These groups would not need to rely on geographic proximity as a basis for cultural values, eventually displacing conventional national identities.

View File

@ -1,6 +1,6 @@
---
title: Participate
sidebar_position: 8
sidebar_position: 9
description: We invite anyone passionate about our mission to participate in the creation of the Logos Network.
pagination_next: null
---

View File

@ -1,6 +1,6 @@
---
title: Process
sidebar_position: 6
sidebar_position: 7
description: Research Process for the Logos Network
---

View File

@ -1,6 +1,6 @@
---
title: Storage
sidebar_position: 5
sidebar_position: 6
description: Codex is a decentralised data storage platform providing strong censorship resistance and durability for the Logos Network.
---

View File

@ -1,6 +1,6 @@
---
title: Technology
sidebar_position: 2
sidebar_position: 3
---
Logos is a re-imagining of the original ['Web 3.0'](http://gavwood.com/dappsweb3.html) vision.

View File

@ -8,6 +8,7 @@ const sidebars = {
value: '<div class="sidebar-menu-divider"></div>',
defaultStyle: true,
},
'about',
'history',
'technology',
'consensus',

View File

@ -2,5 +2,5 @@ import React from 'react';
import {Redirect} from '@docusaurus/router';
export const Home = () => {
return <Redirect to="/history" />;
return <Redirect to="/about" />;
}