More updates.

This commit is contained in:
NoobDeveloper412 2024-09-25 21:18:57 +05:00
parent 3819b98709
commit 04e9e6559a
18 changed files with 138 additions and 110 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View file

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

View file

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View file

@ -103,8 +103,8 @@ const sortedSections = sectionsConfig
<h1 class="my-6 glitch-text">Core Contributors</h1>
<SpeakerGrid
people={core.people}
team={core.teams["core-team"]}
core={true}
team={core.teams["core-contributors"]}
core={false}
/>
</div>
)}

View file

@ -6,7 +6,7 @@ const testimonials = [
designation: "Hacktivist, Founder & Director at Dyne.org Foundation",
reviewText:
"Privacy-by-design is the best way to approach the web3 frontier and develop something that empowers people and builds the critical mass for its sustainability. Web3Privacy Now focuses on the best possible goals for crypto developments: privacy, independence and decentralisation.",
imageUrl: "/testimonials/jaromil.jpg",
imageUrl: "/testimonials/jaromil.png",
},
{
id: "hackguru",
@ -15,7 +15,6 @@ const testimonials = [
reviewText:
"They have been organising amazing pro-privacy initiatives. Been a big fan and excited to continue contributing to this amazing community : )",
imageUrl: "/testimonials/hack-guru.jpg",
},
{
id: "lunar-dao",
@ -31,7 +30,7 @@ const testimonials = [
designation: "Founder Labyrinth, Ex Head of DeFi Research Polygon",
reviewText:
"This is the best community for privacy that unites people to collaborate and turns user privacy into reality with exciting narratives.",
imageUrl: "/testimonials/amit-chaudhary.jpg",
imageUrl: "/testimonials/amit-chaudary.jpg",
},
{
id: "andreea",
@ -55,8 +54,7 @@ const testimonials = [
designation: "Founder of Spaghetteth, Project Manager StakeCapital",
reviewText:
"The balance between Transparency and Privacy, accountable and unaccountable, manifest and secret, convex and concave, 1 and 0 is one of the most fun puzzles blockchain tech has to solve for the world. W3P community approaches this with incredible humility and an unravel-the-knot open debate approach. Also I like how they dress.",
imageUrl: "/testimonials/matto-tambussi.jpg",
imageUrl: "/testimonials/matteo-tambussi.jpg",
},
{
id: "pie-man",
@ -65,12 +63,11 @@ const testimonials = [
reviewText:
"Most bullish event by far in EthCC was Web3Privacy Now: right in the middle of the park without anything fancy going on, the only incentive to stay was lovely people with extreme passion for deep but practical steps, cryptography, and amazing applications.",
imageUrl: "/testimonials/pie-man.jpg",
},
];
// Usage
let currentTestimonial = 1;
let currentTestimonial = 0;
---
<div class="w-full mx-auto px-8 border-2 border-[#202020]">
@ -154,7 +151,7 @@ let currentTestimonial = 1;
designation: "Hacktivist, Founder & Director at Dyne.org Foundation",
reviewText:
"Privacy-by-design is the best way to approach the web3 frontier and develop something that empowers people and builds the critical mass for its sustainability. Web3Privacy Now focuses on the best possible goals for crypto developments: privacy, independence and decentralisation.",
imageUrl: "/testimonials/jaromil.jpg",
imageUrl: "/testimonials/jaromil.png",
},
{
id: "hackguru",
@ -163,7 +160,6 @@ let currentTestimonial = 1;
reviewText:
"They have been organising amazing pro-privacy initiatives. Been a big fan and excited to continue contributing to this amazing community : )",
imageUrl: "/testimonials/hack-guru.jpg",
},
{
id: "lunar-dao",
@ -179,7 +175,7 @@ let currentTestimonial = 1;
designation: "Founder Labyrinth, Ex Head of DeFi Research Polygon",
reviewText:
"This is the best community for privacy that unites people to collaborate and turns user privacy into reality with exciting narratives.",
imageUrl: "/testimonials/amit-chaudhary.jpg",
imageUrl: "/testimonials/amit-chaudary.jpg",
},
{
id: "andreea",
@ -203,8 +199,7 @@ let currentTestimonial = 1;
designation: "Founder of Spaghetteth, Project Manager StakeCapital",
reviewText:
"The balance between Transparency and Privacy, accountable and unaccountable, manifest and secret, convex and concave, 1 and 0 is one of the most fun puzzles blockchain tech has to solve for the world. W3P community approaches this with incredible humility and an unravel-the-knot open debate approach. Also I like how they dress.",
imageUrl: "/testimonials/matto-tambussi.jpg",
imageUrl: "/testimonials/matteo-tambussi.jpg",
},
{
id: "pie-man",
@ -213,11 +208,8 @@ let currentTestimonial = 1;
reviewText:
"Most bullish event by far in EthCC was Web3Privacy Now: right in the middle of the park without anything fancy going on, the only incentive to stay was lovely people with extreme passion for deep but practical steps, cryptography, and amazing applications.",
imageUrl: "/testimonials/pie-man.jpg",
},
];
];
let currentTestimonial = 0;
const container = document.getElementById("testimonial-container");

View file

@ -2,14 +2,14 @@
const { people, team, core } = Astro.props;
// Filter based on the `core` parameter
const members = people.filter((p) => {
console.log(p)
const members = core ? people.filter((p) => {
return team.includes(p.id)
}).filter((p) => p.imageUrl);
}).filter((p) => p.imageUrl) : team;
// const filteredPeople = members.filter((p) => p.imageUrl).slice(0, 12);
const filteredPeople = members.filter((p) => p.imageUrl);
console.log(filteredPeople)
function personLink(person) {
if (person.refs?.twitter) {
return `https://twitter.com/${person.refs.twitter}`;
@ -48,6 +48,9 @@ function personLink(person) {
</a>
<div class="mt-4">
<h3 class="text-xs md:text-[16px] font-bold leading-9">{person.name}</h3>
<p class="text-xs text-gray-500">
{person.caption}
</p>
{person.refs && (
<p class="text-xs text-gray-500">
{person.refs.twitter && `@${person.refs.twitter}`}

View file

@ -227,29 +227,62 @@
"kurt-opsahl",
"guy-zyskind"
],
"all-speakers": [
"ameen-soleimani",
"guy-zyskind",
"max-hampshire",
"antoni-zolciak",
"rachel-rose-oleary",
"alex-kampa",
"oliver-gale",
"mario-havel",
"costanza-gallo",
"manu-alzuru",
"nick-almond",
"juraj-bednar",
"dcbuilder",
"alona-shevchenko",
"tibor-csoka",
"merula",
"serinko",
"steffen-kux",
"althea",
"mykola-siusko",
"pg",
"tree"
"core-contributors": [
{
"id": "mykola-siusko",
"name": "Mykola Siusko",
"caption": "Chief empathy officer",
"country": "es",
"imageUrl": "https://data.web3privacy.info/img/people/mykola-siusko.png"
},
{
"id": "pg",
"name": "PG",
"caption": "Larrikin sling master",
"country": "it",
"imageUrl": "https://data.web3privacy.info/img/people/pg.jpg"
},
{
"id": "michael-parenti",
"name": "Michael Parenti",
"caption": "Ops & vibe",
"country": "us",
"imageUrl": "/core-contributors/michael-parenti.png"
},
{
"id": "coinmandeer",
"name": "Coinmandeer",
"caption": "UI/UX Design & Brand",
"imageUrl": "https://data.web3privacy.info/img/people/coinmandeer.png"
},
{
"id": "robert",
"name": "Robert De Groot",
"caption": "Partnership & Volunteers",
"imageUrl": "https://data.web3privacy.info/img/people/coinmandeer.png"
},
{
"id": "cat",
"name": "CAT THAT LURKS",
"caption": "“Like all pure creatures, cats are practical.” William S. Burroughs",
"imageUrl": "/core-contributors/cat.png"
},
{
"id": "odd",
"name": "ODD",
"caption": "Copywriting & Education",
"imageUrl": "/core-contributors/odd.png"
},
{
"id": "mf",
"name": "MF",
"caption": "master of caffeine",
"imageUrl": "/core-contributors/mf.png"
}
]
},
"research": [