mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
feat: prepare html abouts us
This commit is contained in:
parent
99b3e127a1
commit
8840fb6afb
3 changed files with 36 additions and 35 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "w3pn-web",
|
"name": "w3pn-web",
|
||||||
"version": "1.2.3",
|
"version": "1.3.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "w3pn-web",
|
"name": "w3pn-web",
|
||||||
"version": "1.2.3",
|
"version": "1.3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/svelte": "^5.2.0",
|
"@astrojs/svelte": "^5.2.0",
|
||||||
"@astrojs/tailwind": "^5.1.0",
|
"@astrojs/tailwind": "^5.1.0",
|
||||||
|
|
|
@ -54,9 +54,9 @@ hero:
|
||||||
Privacy advocates worldwide are coming together to discuss how to mainstream privacy within the Web3 industry. So it will become a cultural phenomenon embodying both decentralisation & anti-surveillance capitalism practices.
|
Privacy advocates worldwide are coming together to discuss how to mainstream privacy within the Web3 industry. So it will become a cultural phenomenon embodying both decentralisation & anti-surveillance capitalism practices.
|
||||||
landing:
|
landing:
|
||||||
mission: |
|
mission: |
|
||||||
To make humans gain control over their privacy by utilizing Web3 stack. So privacy would become a conscious choice (active lifestyle) & be accessible to everyone worldwide.
|
Empower individuals to take control of their digital privacy.
|
||||||
<br><br>
|
<br><br>
|
||||||
Privacy advocates worldwide are coming together to discuss how to mainstream privacy within the Web3 industry. So it will become a cultural phenomenon embodying both decentralisation.
|
We envision a world where privacy is a conscious, actively chosen lifestyle, accessible to everyone, everywhere. To turn this into reality, we need to unite our efforts and carve out a path toward a more equitable, decentralized and privacy-respecting digital space.
|
||||||
topics:
|
topics:
|
||||||
- Identity
|
- Identity
|
||||||
- Private Messaging
|
- Private Messaging
|
||||||
|
|
|
@ -1,38 +1,39 @@
|
||||||
---
|
---
|
||||||
|
import BaseLayout from "../layouts/base.astro";
|
||||||
import BaseLayout from '../layouts/base.astro';
|
import * as config from "../config.yaml";
|
||||||
import * as config from '../config.yaml';
|
import core from "../core.json";
|
||||||
import core from '../core.json';
|
import AboutFooter from "../components/AboutFooter.astro";
|
||||||
import AboutFooter from '../components/AboutFooter.astro';
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<BaseLayout title="About" image="og_about">
|
<BaseLayout title="About" image="og_about">
|
||||||
|
<div class="middle-pane-medium mt-10">
|
||||||
|
<!-- <div class="mb-20">
|
||||||
|
<a href="https://docs.web3privacy.info/manifesto"
|
||||||
|
><img src="/bringing-100m-to-privacy-market.png" /></a
|
||||||
|
>
|
||||||
|
</div> -->
|
||||||
|
|
||||||
<div class="middle-pane-medium mt-10">
|
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16">
|
||||||
<div class="mb-20">
|
<div>
|
||||||
<a href="https://docs.web3privacy.info/manifesto"><img src="/bringing-100m-to-privacy-market.png" /></a>
|
<h1>Our mission</h1>
|
||||||
</div>
|
<div set:html={config.landing.mission} />
|
||||||
|
<div class="mt-8 flex gap-6 items-center w-full">
|
||||||
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16">
|
<a class="button inverted" href={core.links.manifesto}
|
||||||
<div>
|
><button>Read manifesto</button></a
|
||||||
<h1>Our mission</h1>
|
>
|
||||||
<div set:html={config.landing.mission}></div>
|
<a class="button" href={core.links.manifesto}
|
||||||
<div class="mt-8">
|
><button>Join us</button></a
|
||||||
<a class="button inverted" href={core.links.manifesto}><button>Read manifesto</button></a>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h1>Topics</h1>
|
<h1>Topics</h1>
|
||||||
<div class="columns-2 uppercase text-sm w3pn-topics">
|
<div class="columns-2 uppercase text-sm w3pn-topics">
|
||||||
{config.landing.topics.map((topic) => (
|
{config.landing.topics.map((topic) => <div>{topic}</div>)}
|
||||||
<div>{topic}</div>
|
</div>
|
||||||
))}
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<AboutFooter />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<AboutFooter />
|
||||||
|
</div>
|
||||||
</BaseLayout>
|
</BaseLayout>
|
Loading…
Reference in a new issue