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",
"version": "1.2.3",
"version": "1.3.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "w3pn-web",
"version": "1.2.3",
"version": "1.3.0",
"dependencies": {
"@astrojs/svelte": "^5.2.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.
landing:
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>
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:
- Identity
- Private Messaging

View File

@ -1,38 +1,39 @@
---
import BaseLayout from '../layouts/base.astro';
import * as config from '../config.yaml';
import core from '../core.json';
import AboutFooter from '../components/AboutFooter.astro';
import BaseLayout from "../layouts/base.astro";
import * as config from "../config.yaml";
import core from "../core.json";
import AboutFooter from "../components/AboutFooter.astro";
---
<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="mb-20">
<a href="https://docs.web3privacy.info/manifesto"><img src="/bringing-100m-to-privacy-market.png" /></a>
</div>
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16">
<div>
<h1>Our mission</h1>
<div set:html={config.landing.mission}></div>
<div class="mt-8">
<a class="button inverted" href={core.links.manifesto}><button>Read manifesto</button></a>
</div>
</div>
<div>
<h1>Topics</h1>
<div class="columns-2 uppercase text-sm w3pn-topics">
{config.landing.topics.map((topic) => (
<div>{topic}</div>
))}
</div>
</div>
</div>
<AboutFooter />
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16">
<div>
<h1>Our mission</h1>
<div set:html={config.landing.mission} />
<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" href={core.links.manifesto}
><button>Join us</button></a
>
</div>
</div>
<div>
<h1>Topics</h1>
<div class="columns-2 uppercase text-sm w3pn-topics">
{config.landing.topics.map((topic) => <div>{topic}</div>)}
</div>
</div>
</div>
</BaseLayout>
<AboutFooter />
</div>
</BaseLayout>