diff --git a/public/engine.png b/public/engine.png new file mode 100644 index 0000000..dd39d4c Binary files /dev/null and b/public/engine.png differ diff --git a/src/components/AboutWidget.astro b/src/components/AboutWidget.astro index 62d12d8..1e0b0f1 100644 --- a/src/components/AboutWidget.astro +++ b/src/components/AboutWidget.astro @@ -1,6 +1,11 @@ --- import * as config from "../config.yaml"; import core from "../core.json"; + +interface Props { + variant?: "about" | "membership"; +} +const { variant = "about" } = Astro.props; ---
@@ -39,7 +44,15 @@ import core from "../core.json"; €100 / Year
- + - + +
+
+

CATEGORY

+
+
+

Objective

+
+
+

Details

+
+
+

More info

+
+
+
+
+

Events

+
+
+ { + config.organisation.table.events.map((item) => ( +

+ {item.objective} +

+ )) + } +
+
+ { + config.organisation.table.events.map((item) => ( +

+ {item.details} +

+ )) + } +
+
+ { + config.organisation.table.events.map((item) => ( + + + + )) + } +
+
+
+
+

RESEARCH

+
+
+ { + config.organisation.table.research.map((item) => ( +

+ {item.objective} +

+ )) + } +
+
+ { + config.organisation.table.research.map((item) => ( +

+ {item.details} +

+ )) + } +
+
+ { + config.organisation.table.research.map((item) => ( + + + + )) + } +
+
+
+
+

TOOLS

+
+
+ { + config.organisation.table.tools.map((item) => ( +

+ {item.objective} +

+ )) + } +
+
+ { + config.organisation.table.tools.map((item) => ( +

+ {item.details} +

+ )) + } +
+
+ { + config.organisation.table.tools.map((item) => ( + + + + )) + } +
+
+
+
+

education

+
+
+ { + config.organisation.table.education.map((item) => ( +

+ {item.objective} +

+ )) + } +
+
+ { + config.organisation.table.education.map((item) => ( +

+ {item.details} +

+ )) + } +
+
+ { + config.organisation.table.education.map((item) => + item.url ? ( + + + + ) : ( +

+   +

+ ) + ) + } +
+
+ diff --git a/src/components/OrganisationTableMobile.astro b/src/components/OrganisationTableMobile.astro new file mode 100644 index 0000000..9f12616 --- /dev/null +++ b/src/components/OrganisationTableMobile.astro @@ -0,0 +1,81 @@ +--- +import * as config from "../config.yaml"; +import core from "../core.json"; +--- + +
+
+

EVENTS

+
+ { + config.organisation.table.events.map((item) => ( + <> +

{item.objective}

+

{item.details}

+ {item.url && ( + + + + )} + + )) + } +
+
+
+

RESEARCH

+
+ { + config.organisation.table.research.map((item) => ( + <> +

{item.objective}

+

{item.details}

+ {item.url && ( + + + + )} + + )) + } +
+
+
+

tools

+
+ { + config.organisation.table.tools.map((item) => ( + <> +

{item.objective}

+

{item.details}

+ {item.url && ( + + + + )} + + )) + } +
+
+
+

education

+
+ { + config.organisation.table.education.map((item) => ( + <> +

{item.objective}

+

{item.details}

+ {item.url && ( + + + + )} + + )) + } +
+
+
diff --git a/src/config.yaml b/src/config.yaml index 958cd6b..d82c987 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -120,3 +120,70 @@ landing: ico: forum community: | Our aim with gatherings is to bring together key players, different perspectives, skills and visions. We aggregate tech and non tech people, key players and contributors, builders, researchers, philosophers, lawyers, policymakers, activists, local communities and general public. +organisation: + table: + events: + - objective: 6+ Events in different countires + details: | + 1 Summit + 1 Hackathon + 3 Meetups [target outreach: 1000 people IRL] + + height: 50 + + research: + - objective: Privacy in Ethereum + details: | + The most comprehensive report of privacy + url: /research/ethereum + height: 50 + - objective: Use cases DB update & improve (500 → 700 privacy projects + details: | + Most extensive web3 db of privacy-enhancing solutions + url: /research/ethereum + height: 80 + - objective: Privacy Annual Report (150+ pages) + details: | + Showcase all happenings and achievements of the year (3rd Edition) + url: /research/ethereum + height: 60 + - objective: Privacy Awards + details: | + Annual vote of most popular and interesting privacy projects + url: /research/ethereum + height: 60 + - objective: Week in Privacy + details: | + Newsletter with round-up of the most important privacy news + url: /research/ethereum + height: 60 + - objective: Monthly Infographics & Articles + details: | + Release of useful material for tech & general public + url: /research/ethereum + height: 30 + tools: + - objective: Privacy Explorer V.2 + details: | + 300 services, 5 new categories, improve scoring model + url: /research/ethereum + height: 50 + - objective: Privacy Routing tool (V0.1 release) + details: | + Help users to choose the right service for their transactions + url: /research/ethereum + height: 50 + education: + - objective: Academy + details: | + 101 privacy educational track with our partners + + height: 50 + - objective: Hackathon Curation Pack + details: | + Guidelines to help the builders uderstand actual issues + url: /research/ethereum + height: 60 + - objective: Privacy Guidelines for the public + details: | + + url: /research/ethereum + height: 50 diff --git a/src/pages/membership.astro b/src/pages/membership/index.astro similarity index 70% rename from src/pages/membership.astro rename to src/pages/membership/index.astro index 4fabcd6..4755ee6 100644 --- a/src/pages/membership.astro +++ b/src/pages/membership/index.astro @@ -1,9 +1,9 @@ --- -import BaseLayout from "../layouts/base.astro"; +import BaseLayout from "../../layouts/base.astro"; import * as config from "../config.yaml"; -import core from "../core.json"; -import AboutFooter from "../components/AboutFooter.astro"; -import AboutWidget from "../components/AboutWidget.astro"; +import core from "../../core.json"; +import AboutFooter from "../../components/AboutFooter.astro"; +import AboutWidget from "../../components/AboutWidget.astro"; ---
- +
diff --git a/src/pages/membership/individual.astro b/src/pages/membership/individual.astro new file mode 100644 index 0000000..9dfa96e --- /dev/null +++ b/src/pages/membership/individual.astro @@ -0,0 +1,112 @@ +--- +import BaseLayout from "../../layouts/base.astro"; +import * as config from "../config.yaml"; +import core from "../../core.json"; +import AboutFooter from "../../components/AboutFooter.astro"; +import AboutWidget from "../../components/AboutWidget.astro"; +--- + + +
+
+
+

individual membership

+ Become an integral part of our community! +
+
+
+ + Benefits + +
    +
  • You are supporting good thing!
  • +
  • Free access to all our events
  • +
  • "Privacy Survival Kit" swag bundle
  • +
  • Access to our researches and special group chats
  • +
  • Deals from our partners
  • +
  • Voting rights in our association
  • +
+
+
+ Price + + €100 / Year + + +
+
+
+ +
+
+

+ Membership details +

+
+ Voting rights in our association +

+ For members who want to be more involved in the governance of our + initiative, we offer the opportunity to become a voting member of + our association. As a voting member, you will have the opportunity + to participate in the decisions of our Congress once a year by + voting on our plans and other topics. To become a voting member, you + must fill out a special form (upcoming) and be approved by the + association comittee. +

+
+
+

Special chat group access

+

+ Private chat for all members where you can communicate directly with + the Core Team and connect with each other. +

+
+
+

"Privacy Survival Kit" swag bundle

+

+ Collect your Privacy Survival Kit once a year [Pick up at our events + (for free) or by delivery (extra fee)] +

+
+
+

+ Opportunity to vote in a special category 
at the Privacy Tech + Awards +

+

+ We are planning a special category in the Privacy Tech Awards where + only our members will be able to vote. +

+
+
+
+

+ We respect your privacy! +

+

+ Membership is essentially anonymous
and the list of members is + confidential
 - we do not require or collect any personal information + about our members unless they explicitly declare that they want to be + listed publicly. +

+

+ We only need one verifiable identifier, which can be an email or + cryptocurrency address 
(private key), which is used to prove your + membership. +

+
+
+
+
diff --git a/src/pages/membership/organisation.astro b/src/pages/membership/organisation.astro new file mode 100644 index 0000000..ea64f63 --- /dev/null +++ b/src/pages/membership/organisation.astro @@ -0,0 +1,310 @@ +--- +import BaseLayout from "../../layouts/base.astro"; +import * as config from "../config.yaml"; +import core from "../../core.json"; +import AboutFooter from "../../components/AboutFooter.astro"; +import AboutWidget from "../../components/AboutWidget.astro"; +import OrganisationTableDesktop from "../../components/OrganisationTableDesktop.astro"; +import OrganisationTableMobile from "../../components/OrganisationTableMobile.astro"; +--- + + +
+
+
+

organisation membership

+ + Instead of proposing partnerships for every event and/or + initiative,
we decided to implement a continuous membership approach. + +
+
+
+ + Benefits + +
    +
  • Visibility at our Summits, Meetups & Hackathons
  • +
  • Free Tickets for team and discounts for your partners
  • +
  • + Finding right builders for your beta, product to test or develop +
  • +
  • Speaking and mentoring opportunities
  • +
  • Raise awareness within specific inputs
  • +
  • + Engage target audience via using (your and others) experts opinion +
  • +
+
+
+ Price + + Variable tiers €7000+ + + +
+
+
+ +
+
+

+ Why membership? +

+
    +
  • Help to meet our respective specific and market needs
  • +
  • Avoid wasting time and resources.
  • +
  • + Guarantee visibility and services by leveraging all our ecosystem + and activities, and to structure a common growth path. +
  • +
+
+
+

+ Our Principles +

+
    +
  • + We care about our independence being an open-source & + community-driven organisation. +
  • +
  • + We don’t work for any company, but collaborate with them. The last + decision always on us. +
  • +
  • + Perfect match is a partner who cares about privacy market growth & + support advocacy. Together we can growth. +
  • +
+
+
+

+ This enable not just integrity of our work, but increase trust to both + W3PN activities & partner representation. +

+
+
+ +
+
+

+ Our OKRs for the year (2024) +

+
+

MAJOR

+

+ #1 Privacy-centric think tank behind critical advocacy ecosystem +

+

+ “L2beat for privacy” aka Explorer, the biggest privacy-services DB, + privacy reports & researches, essential summits & meetups +

+
+
+

SUB

+
    +
  • + 10M annual reach (socials, media, + events) +
  • +
  • + 2000 events visitors (incl 100 + privacy leaders) +
  • +
  • + 50 contributors (beyond core team) +
  • +
+
+
+

Our Activities

+

+ Our activities are multispectral as we want to improve privacy + alltogetgher. +

+
+
+ +
+ +
+
+
+

+ Value we can deliver +

+
+

Events

+
    +
  • 10M annual reach (socials, media, events)
  • +
  • + Visibility - before, during and after - at our Summits, Meetups + & Hackathons (Logo, Merch, Talks, Workshops, Recordings) +
  • +
  • Free Tickets for team and discounts for your partners
  • +
  • + Finding right builders for your beta, product to test or develop +
  • +
  • Speaking and mentoring opportunities
  • +
  • Panel curation upon specific needs
  • +
  • + Bigger outreach and Impact (we bring your brand, your team and + developing needs around every event we attend 
(ETHDam, ETHRome, + ETHBrno, ETHBarcelona, BlackSky…) +
  • +
  • 50 contributors (beyond core team)
  • +
+
+
+

Research

+ + We carry on research delivering essays, reports, infographics, + github repos, decks, guidelines + +
+

Brand

+
    +
  • + Raise awareness within specific inputs (category, specs, + market) +
  • +
  • + Empower trust (product of choice, Tier1 category service, top + of mind) +
  • +
  • Logo at the end of every report
  • +
  • + Use report’s results stating you are supporting privacy + research (positive image) +
  • +
  • Underline your role in the market
  • +
+
+
+

Growth

+
    +
  • + Engage target audience via using (your and others) experts + opinion +
  • +
  • + Additional marketing content from infographics to charts +
  • +
  • + Third party validation of your specific claims (if they are + attested) +
  • +
  • Community building content
  • +
  • Priority in our publications and newsletter
  • +
  • Tailor made articles based upon specific needs
  • +
+
+
+
+

Explorer

+ + 3in1: a ranking system, database & comprehensive profiling to + empower the general public in discerning the privacy levels, + security, and reliability of Web3 projects. + +
+

Brand

+
    +
  • Raise awareness within the category (gain reach)
  • +
  • Increase trust by building great profile
  • +
  • Improve trust by receiving a third party validation
  • +
  • Visibility through benchmarks
  • +
+
+
+

Product

+
    +
  • + Increase trial or generate leads by building a transparent + profile +
  • +
  • Support your releases
  • +
+
+
+
+

Academy

+ + We aim to realize Academy to educate tech and non tech people, + giving basics about digital privacy and practical use-cases, + directions… + +
+
    +
  • Feature your experts opinion and content
  • +
  • Content joint production
  • +
  • + Co-develop domain-specific courses (wallet privacy 101, + ethereum privacy…) +
  • +
+
+
+
+

Financial

+ +
+
    +
  • Tax optimization through donation
  • +
+
+
+
+

Other

+ +
+
    +
  • + Organizing educational seminars for your employees, clients, + target audience +
  • +
  • Job listings (web, newsletter, socials…)
  • +
  • + We transform content you share in conferences into educational + material +
  • +
  • Special insights on market growth and evolution
  • +
  • Group for company members
  • +
  • Access to special members-only events
  • +
+
+
+
+

Tiers

+
+
    +
  • Membership fee: 7K - 40K EUR / year (depends on tier)
  • +
  • Non-profit membership fee: 1K EUR / year
  • +
+
+
+ + For Tier breakdown and details please write us + hello@web3privacy.info + +
+
+
+