-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add eth denver event draft page
- Loading branch information
1 parent
d7d6c42
commit 611fa72
Showing
10 changed files
with
273 additions
and
16 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
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,143 @@ | ||
--- | ||
title: Meet Waku | ||
description: Uncompromising Web3 Communication at Scale | ||
hide_table_of_contents: true | ||
hide_title: true | ||
--- | ||
|
||
import { | ||
Box, | ||
EventBanner, | ||
EventInfo, | ||
EventAbout, | ||
EventProfileList, | ||
EventCTA, | ||
EventCTASection, | ||
EventHeader, | ||
Grid, | ||
} from '@site/src/components/mdx' | ||
|
||
<head> | ||
<body className="events" /> | ||
</head> | ||
|
||
<Box top={{ xs: 8 }}> | ||
<EventBanner src="/events/eth-denver.png" /> | ||
<EventHeader | ||
title="Meet Waku: Uncompromising Web3 Communication at Scale" | ||
description="We are a family of robust, censorship-resistant communication protocols designed to enable privacy-focused messaging for web3 apps." | ||
/> | ||
|
||
<Box top={{ xs: 32 }}> | ||
<Grid xs={{ cols: 2, gap: '1rem' }} md={{ cols: 2 }}> | ||
<Grid.Item xs={1}> | ||
<EventInfo | ||
label="Date" | ||
content={"Feb 23 – Mar 3\n2024"} | ||
/> | ||
</Grid.Item> | ||
<Grid.Item xs={1}> | ||
<EventInfo | ||
label="Location" | ||
content={"Denver, Colorado\nUSA"} | ||
/> | ||
</Grid.Item> | ||
</Grid> | ||
</Box> | ||
</Box> | ||
|
||
<Box top={{ xs: 120 }}> | ||
<EventAbout> | ||
Waku is a suite of generalised messaging protocols aiming to be the communication standard for the decentralised web. It enables private and secure human-to-human, machine-to-machine, and human-to-machine communication without reliance on centralised intermediaries. Messaging through Waku is possible from one-to-one to many-to-many. | ||
|
||
<br /> | ||
|
||
Waku serves as the communications layer of the Logos tech stack. Alongside the trustless agreement layer, Nomos, and the storage layer, Codex, it is one of the Logos Collective's foundational projects. | ||
|
||
<br /> | ||
|
||
Motive: | ||
Today's internet is increasingly controlled by a small number of tech giants. Google, Amazon, Meta, and a few others dictate what we see and with whom we can communicate. Their influence is almost limitless, and their actions shape global public opinion and even geopolitics. | ||
|
||
<br /> | ||
|
||
To anyone that understands the internet's present architecture, this outcome should be expected. The centralised entities through which we communicate have privileged access to reams of data that we, as internet users, produce daily, presenting an opportunity for the kind of surveillance that was once confined to the pages of science-fiction literature. Thinking that the most powerful commercial and political institutions would not leverage this would be naive. | ||
|
||
<br /> | ||
|
||
Yet, it doesn't have to be this way. Advances in cryptography, peer-to-peer networking, and decentralised technologies provide an alternate path forward. | ||
|
||
</EventAbout> | ||
</Box> | ||
|
||
<Box top={{ xs: 120 }}> | ||
<EventProfileList | ||
title="Our Delegation" | ||
description="Reach out for the appointment." | ||
data={[ | ||
{ | ||
image: '/events/guru.png', | ||
name: 'Kumaraguru T', | ||
role: 'Developer relations engineer', | ||
email: 'guru@status.im', | ||
linkedin: 'https://linkedin.com/in/kumaraguru7', | ||
}, | ||
{ | ||
image: '/events/aaron.png', | ||
name: 'Aaron Bendersky', | ||
role: 'Program Manager', | ||
email: 'aaron@status.im', | ||
linkedin: 'https://www.linkedin.com/in/aaronbendersky/', | ||
}, | ||
{ | ||
image: '/events/pedro.png', | ||
name: 'Pedro Lains', | ||
role: 'Business Development Lead', | ||
email: 'pedrolains@status.im', | ||
linkedin: 'https://www.linkedin.com/in/pedro-la%C3%ADns-14526183/', | ||
}, | ||
]} | ||
/> | ||
</Box> | ||
|
||
<Box top={{ xs: 120 }}> | ||
<Grid | ||
xs={{ cols: 1, gap: '1rem' }} | ||
md={{ cols: 2 }} | ||
className="events-cta-sections" | ||
> | ||
<Grid.Item xs={1}> | ||
<EventCTASection | ||
title="Logos Network State" | ||
description={ | ||
'Want to get involved with Waku?\nJoin the Discord community.' | ||
} | ||
link="https://discord.waku.org/" | ||
label="Get Involved" | ||
/> | ||
</Grid.Item> | ||
<Grid.Item xs={1}> | ||
<EventCTASection | ||
title="Newsletter" | ||
description={'Subscribe\nto our newsletter'} | ||
label="Subscribe" | ||
formInput={[ | ||
{ | ||
label: 'Name', | ||
placeholder: 'Name', | ||
type: 'text', | ||
name: 'name', | ||
required: true, | ||
}, | ||
{ | ||
label: 'Email', | ||
placeholder: 'Enter your email', | ||
type: 'email', | ||
name: 'email', | ||
required: true, | ||
}, | ||
]} | ||
/> | ||
</Grid.Item> | ||
</Grid> | ||
</Box> |
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,75 @@ | ||
--- | ||
title: Events | ||
description: List of all Waku events | ||
hide_table_of_contents: true | ||
hude_title: true | ||
--- | ||
|
||
import { | ||
EventCardList, | ||
EventCTASection, | ||
Grid, | ||
Box, | ||
} from '@site/src/components/mdx' | ||
|
||
# Events | ||
|
||
List of all Waku events | ||
|
||
<head> | ||
<body className="events" /> | ||
</head> | ||
|
||
<EventCardList | ||
data={[ | ||
{ | ||
thumbnail: '/events/eth-denver.png', | ||
title: 'Meet Waku: Uncompromising Web3 Communication at Scale', | ||
date: 'Feb 23 - Mar 3\n2024', | ||
location: 'Denver, Colorado\nUSA', | ||
href: '/events/eth-denver', | ||
}, | ||
]} | ||
/> | ||
|
||
<Box top={{ xs: 152 }}> | ||
<Grid | ||
xs={{ cols: 1, gap: '1rem' }} | ||
md={{ cols: 2 }} | ||
className="events-cta-sections" | ||
> | ||
<Grid.Item xs={1}> | ||
<EventCTASection | ||
title="Logos Network State" | ||
description={ | ||
'Want to get involved with Waku?\nJoin the Discord community.' | ||
} | ||
link="https://discord.waku.org/" | ||
label="Get Involved" | ||
/> | ||
</Grid.Item> | ||
<Grid.Item xs={1}> | ||
<EventCTASection | ||
title="Newsletter" | ||
description={'Subscribe\nto our newsletter'} | ||
label="Subscribe" | ||
formInput={[ | ||
{ | ||
label: 'Name', | ||
placeholder: 'Name', | ||
type: 'text', | ||
name: 'name', | ||
required: true, | ||
}, | ||
{ | ||
label: 'Email', | ||
placeholder: 'Enter your email', | ||
type: 'email', | ||
name: 'email', | ||
required: true, | ||
}, | ||
]} | ||
/> | ||
</Grid.Item> | ||
</Grid> | ||
</Box> |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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