feat: prepare html abouts us

This commit is contained in:
Diex5 2024-04-26 12:20:47 +02:00
parent 99b3e127a1
commit 8840fb6afb
3 changed files with 36 additions and 35 deletions

4
package-lock.json generated
View File

@ -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",

View File

@ -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

View File

@ -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="middle-pane-medium mt-10">
<div class="mb-20"> <!-- <div class="mb-20">
<a href="https://docs.web3privacy.info/manifesto"><img src="/bringing-100m-to-privacy-market.png" /></a> <a href="https://docs.web3privacy.info/manifesto"
</div> ><img src="/bringing-100m-to-privacy-market.png" /></a
>
</div> -->
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16"> <div class="grid grid-cols-1 xl:grid-cols-2 gap-16">
<div> <div>
<h1>Our mission</h1> <h1>Our mission</h1>
<div set:html={config.landing.mission}></div> <div set:html={config.landing.mission} />
<div class="mt-8"> <div class="mt-8 flex gap-6 items-center w-full">
<a class="button inverted" href={core.links.manifesto}><button>Read manifesto</button></a> <a class="button inverted" href={core.links.manifesto}
><button>Read manifesto</button></a
>
<a class="button" href={core.links.manifesto}
><button>Join us</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> </div>
<AboutFooter /> <AboutFooter />
</div> </div>
</BaseLayout> </BaseLayout>