diff --git a/README.md b/README.md index 38337fd..9ff5acc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# ourworldcoop +# threefoldcoop diff --git a/index.html b/index.html index 2357c05..f5b302b 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - OurWorld Coop - Building the New Internet Together + ThreeFold Galaxy Coop - Building the New Internet Together
diff --git a/package.json b/package.json index 48d96ad..78779bc 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ourworld-coop-website", + "name": "threefold-coop-website", "private": true, "version": "0.0.0", "type": "module", diff --git a/specs/0_structure_vision.md b/specs/0_structure_vision.md index 5c4cee7..2e2e821 100644 --- a/specs/0_structure_vision.md +++ b/specs/0_structure_vision.md @@ -2,29 +2,29 @@ ## Purpose of the Site -The purpose of the OurWorld Coop website is to introduce and attract members, users, and investors to a new digital ecosystem built on the principles of sovereignty, decentralization, and collective intelligence. +The purpose of the ThreeFold Galaxy Coop website is to introduce and attract members, users, and investors to a new digital ecosystem built on the principles of sovereignty, decentralization, and collective intelligence. The website serves as the primary informational and onboarding platform for a multi-faceted initiative that includes: -- **OurWorld Coop:** A cooperative movement for a new, fair, and user-owned internet. +- **ThreeFold Galaxy Coop:** A cooperative movement for a new, fair, and user-owned internet. - **HERO:** A sovereign, personal AI companion that acts as the user's agent in the digital world. - **Digital Freezone:** A sovereign digital territory providing a unique legal and governance framework. -- **OurWorld Venture Creator:** A holding company designed to fund and scale the technologies and ventures that form the foundation of this new internet. +- **ThreeFold Galaxy Venture Creator:** A holding company designed to fund and scale the technologies and ventures that form the foundation of this new internet. The site aims to communicate a compelling vision for a better digital future and provide clear pathways for different audiences to get involved, whether by becoming a cooperative member, registering interest in the HERO product, or exploring investment opportunities. ## Website Structure -The website is structured across several key pages, each designed to address a specific aspect of the OurWorld ecosystem and guide different user journeys. +The website is structured across several key pages, each designed to address a specific aspect of the ThreeFold Galaxy ecosystem and guide different user journeys. -- **Homepage (`/`):** Serves as the main entry point, providing a high-level overview of the entire vision. It introduces the core problems with the current internet and presents OurWorld Coop as the solution. It briefly touches on HERO and the Digital Freezone and directs users to learn more or become a member. +- **Homepage (`/`):** Serves as the main entry point, providing a high-level overview of the entire vision. It introduces the core problems with the current internet and presents ThreeFold Galaxy Coop as the solution. It briefly touches on HERO and the Digital Freezone and directs users to learn more or become a member. - **HERO (`/hero`):** This page focuses exclusively on the HERO product. It details what HERO is (a sovereign AI companion), why it matters (a shift towards collective intelligence), what it can do for the user (learn, heal, create), and the principles it's built on (privacy, cultural relevance). - **How It Works (`/how-it-works`):** This page delves into the technical architecture of HERO. It explains that HERO runs on the ThreeFold Grid, a decentralized internet, and details the security, sovereignty, and resilience features this provides. It's aimed at a more technically-minded audience. -- **Digital Freezone (`/digital-freezone`):** This page explains the unique governance and legal foundation of the OurWorld ecosystem. It defines what a digital freezone is and describes its core components: digital sovereignty, cooperative governance, and fair dispute resolution. +- **Digital Freezone (`/digital-freezone`):** This page explains the unique governance and legal foundation of the ThreeFold Galaxy ecosystem. It defines what a digital freezone is and describes its core components: digital sovereignty, cooperative governance, and fair dispute resolution. -- **Venture Creator (`/holding`):** This page targets potential investors. It introduces OurWorld Venture Creator, a holding company that funds a portfolio of synergistic startups building the new internet. It outlines the investment opportunity, the portfolio companies, and the path to a potential IPO. +- **Venture Creator (`/holding`):** This page targets potential investors. It introduces ThreeFold Galaxy Venture Creator, a holding company that funds a portfolio of synergistic startups building the new internet. It outlines the investment opportunity, the portfolio companies, and the path to a potential IPO. - **Become a Member (`/register`):** This is the primary call-to-action page for joining the cooperative. It details the membership offer ($20/month) and provides a multi-step form for users to register their interest and eventually make a payment. \ No newline at end of file diff --git a/specs/3_technology.md b/specs/3_technology.md index 9c48104..b562493 100644 --- a/specs/3_technology.md +++ b/specs/3_technology.md @@ -246,7 +246,7 @@ We want to communicate that ThreeFold has fundamentally reimagined cloud infrast ### 11. Technical Resources -* **Learn more at [https://info.ourworld.tf/tech](https://info.ourworld.tf/tech)** +* **Learn more at [https://info.threefold.tf/tech](https://info.threefold.tf/tech)** * **Extracted Text:** > **Dive Deeper:** > diff --git a/src/App.jsx b/src/App.jsx index 580012e..bd163ec 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3,20 +3,20 @@ import Navigation from './components/Navigation.jsx' import navigationData from './config/navigation.json' // Dynamically import components -import HomePage from './components/Home.jsx' +import NewHome from './components/NewHome.jsx' +import TierSHPage from './components/TierSHPage.jsx' import ProductsPage from './components/ProductsPage.jsx' import TechnologyPage from './components/TechnologyPage.jsx' import RegisterPage from './components/RegisterPage.jsx' -import BecomeMember from './components/BecomeMember.jsx' import Blog from './components/Blog.jsx' import BlogPost from './components/BlogPost.jsx' const componentMap = { - HomePage, + NewHome, + TierSHPage, ProductsPage, TechnologyPage, RegisterPage, - BecomeMember, Blog, BlogPost, } @@ -27,8 +27,12 @@ function App() {
+ } /> + } /> {navigationData.map((item) => { const Component = componentMap[item.component] + // Skip the old home page route if it exists in navigationData + if (item.path === '/') return null; return } /> })} } /> diff --git a/src/assets/tenstorrent_galaxy_internal_components.png b/src/assets/tenstorrent_galaxy_internal_components.png new file mode 100644 index 0000000..ec5adeb Binary files /dev/null and b/src/assets/tenstorrent_galaxy_internal_components.png differ diff --git a/src/assets/tier_s_h_compare.png b/src/assets/tier_s_h_compare.png new file mode 100644 index 0000000..48db76b Binary files /dev/null and b/src/assets/tier_s_h_compare.png differ diff --git a/src/components/BecomeMember.jsx b/src/components/BecomeMember.jsx index 980077a..3054b5d 100644 --- a/src/components/BecomeMember.jsx +++ b/src/components/BecomeMember.jsx @@ -313,7 +313,7 @@ function DirectBuy() { id="whyInterested" value={formData.whyInterested} onChange={handleInputChange} - placeholder="What motivates you to join OurWorld Coop? What do you hope to contribute or gain?" + placeholder="What motivates you to join ThreeFold Galaxy Coop? What do you hope to contribute or gain?" rows={4} /> @@ -344,7 +344,7 @@ function DirectBuy() { onCheckedChange={(checked) => setFormData(prev => ({ ...prev, newsletter: checked }))} /> @@ -359,7 +359,7 @@ function DirectBuy() { required /> @@ -408,7 +408,7 @@ function DirectBuy() {

- You are about to purchase a membership to OurWorld Coop for $20 USD per month. + You are about to purchase a membership to ThreeFold Galaxy Coop for $20 USD per month.

Click "Proceed to Payment" to be redirected to Stripe's secure checkout page. @@ -449,7 +449,7 @@ function DirectBuy() { Become A Member

- Join OurWorld Coop's sovereign digital freezone for $20 USD per month. + Join ThreeFold Galaxy Coop's sovereign digital freezone for $20 USD per month.

@@ -479,7 +479,7 @@ function DirectBuy() { Confirm Your Membership - Complete your secure Stripe checkout to confirm your OurWorld Coop membership. + Complete your secure Stripe checkout to confirm your ThreeFold Galaxy Coop membership. @@ -515,10 +515,10 @@ function DirectBuy() {
- OurWorld Coop + ThreeFold Galaxy Coop

Building the new internet, together in our sovereign digital freezone.

-

© 2025 OurWorld Coop. A cooperative for digital freedom.

+

© 2025 ThreeFold Galaxy Coop. A cooperative for digital freedom.

diff --git a/src/components/Blog.jsx b/src/components/Blog.jsx index d7fcf0b..b89ddd1 100644 --- a/src/components/Blog.jsx +++ b/src/components/Blog.jsx @@ -45,14 +45,25 @@ function Blog() { return (
-
-

OurWorld Blog

+
+

ThreeFold Galaxy Blog

- Insights, stories, and updates from the OurWorld Cooperative. + Insights, stories, and updates from the ThreeFold Galaxy Cooperative.

+ +
-
- ThreeFold Cloud + ThreeFold Galaxy

Building the new internet, together in our sovereign digital freezone.

-

© 2025 ThreeFold Cloud. A new era of decentralized infrastructure.

+

© 2025 ThreeFold Galaxy. A new era of decentralized infrastructure.

diff --git a/src/components/Navigation.jsx b/src/components/Navigation.jsx index ffc76b4..641f5fb 100644 --- a/src/components/Navigation.jsx +++ b/src/components/Navigation.jsx @@ -16,7 +16,7 @@ function Navigation() {
- ThreeFold Cloud + ThreeFold Galaxy
{navigationData diff --git a/src/components/NewHome.jsx b/src/components/NewHome.jsx new file mode 100644 index 0000000..abf4ea5 --- /dev/null +++ b/src/components/NewHome.jsx @@ -0,0 +1,39 @@ +import React from 'react'; +import Navigation from './Navigation'; + +function NewHome() { + return ( +
+ +
+
+ +
+

+ As ThreeFold Galaxy we deliver the future of Datacenters +

+

+ resulting in better performance, greener and more security. +

+
+
+
+

Building the new internet, together in our sovereign digital freezone.

+

© 2025 ThreeFold Galaxy. A new era of decentralized infrastructure.

+
+
+
+ ); +} + +export default NewHome; \ No newline at end of file diff --git a/src/components/ProductsPage.jsx b/src/components/ProductsPage.jsx index b3458e4..7c8ba75 100644 --- a/src/components/ProductsPage.jsx +++ b/src/components/ProductsPage.jsx @@ -10,6 +10,9 @@ function ProductsPage() {
{/* Navigation */} +
+ Tenstorrent Product +
{/* Product Overview Hero */}
@@ -32,6 +35,8 @@ function ProductsPage() {

Perfect for homes, offices, and mixed-use buildings, offering edge computing and local AI processing.

+ Tier S H Comparison +
@@ -53,6 +58,7 @@ function ProductsPage() {
+

Key Benefits:

@@ -78,6 +84,7 @@ function ProductsPage() {
+
@@ -112,6 +119,8 @@ function ProductsPage() {
+
+

Key Benefits:

@@ -419,10 +428,10 @@ function ProductsPage() {
- ThreeFold Cloud + ThreeFold Galaxy

Building the new internet, together in our sovereign digital freezone.

-

© 2025 ThreeFold Cloud. A new era of decentralized infrastructure.

+

© 2025 ThreeFold Galaxy. A new era of decentralized infrastructure.

diff --git a/src/components/RegisterPage.jsx b/src/components/RegisterPage.jsx index 89c67f0..0ca7fa6 100644 --- a/src/components/RegisterPage.jsx +++ b/src/components/RegisterPage.jsx @@ -500,7 +500,7 @@ function RegisterPage() { onCheckedChange={(checked) => handleInputChange('newsletter', checked)} />
@@ -649,10 +649,10 @@ function RegisterPage() {
- ThreeFold Cloud + ThreeFold Galaxy

Building the new internet, together in our sovereign digital freezone.

-

© 2025 ThreeFold Cloud. A new era of decentralized infrastructure.

+

© 2025 ThreeFold Galaxy. A new era of decentralized infrastructure.

diff --git a/src/components/TechnologyPage.jsx b/src/components/TechnologyPage.jsx index 1da894e..4b158a8 100644 --- a/src/components/TechnologyPage.jsx +++ b/src/components/TechnologyPage.jsx @@ -8,11 +8,13 @@ import Navigation from './Navigation' function TechnologyPage() { return (
- {/* Navigation */} +
+ Tenstorrent Galaxy Internal Components +
{/* Technology Hero Section */} -
+
Our Innovations

@@ -541,10 +543,10 @@ Generated equations:
- ThreeFold Cloud + ThreeFold Galaxy

Building the new internet, together in our sovereign digital freezone.

-

© 2025 ThreeFold Cloud. A new era of decentralized infrastructure.

+

© 2025 ThreeFold Galaxy. A new era of decentralized infrastructure.

diff --git a/src/components/TierSHPage.jsx b/src/components/TierSHPage.jsx new file mode 100644 index 0000000..b98fc07 --- /dev/null +++ b/src/components/TierSHPage.jsx @@ -0,0 +1,485 @@ +import { useState, useEffect } from 'react' +import { Link } from 'react-router-dom' +import { Button } from './ui/button' +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from './ui/card' +import { Badge } from './ui/badge' +import { Globe, Zap, Shield, Users, DollarSign, Cpu, Database, Network, CheckCircle, Home, TrendingUp, Brain } from 'lucide-react' +import Navigation from './Navigation' + +// Import images + +function TierSHPage() { + const [isVisible, setIsVisible] = useState(false) + + useEffect(() => { + setIsVisible(true) + }, []) + + const scrollToSection = (sectionId) => { + document.getElementById(sectionId)?.scrollIntoView({ behavior: 'smooth' }) + } + + return ( +
+ {/* Navigation */} + + + {/* Hero Section */} +
+
+
+
+
+ The Future of Infrastructure +

+ Transform Your Building Into a Digital Powerhouse. The Future of Infrastructure is Decentralized. +

+

+ ThreeFold Tier-S & Tier-H Datacenters turn homes, offices, and buildings into sovereign digital infrastructure. Generate passive revenue while providing resilient, local cloud and AI services that keep data where it belongs - under your control. +

+
+
+ + +
+

Join the revolution in decentralized digital infrastructure.

+
+
+ +
+
+
+
+ + {/* What Are Tier-S and Tier-H? */} +
+
+
+

What Are Tier-S and Tier-H Datacenters?

+

+ ThreeFold introduces a new class of decentralized digital infrastructure: Tier-S for industrial scale and Tier-H for residential/office scale. +

+
+
+ + + + Tier-S Datacenters + + +

Modular, industrial-grade containers that handle over 1 million transactions per second and support 100,000+ users per unit. Perfect for industrial-scale AI and cloud deployment.

+
+
+ + + + Tier-H Datacenters + + +

Plug-and-play nodes for homes, offices, and mixed-use spaces. Provide full compute, storage, and networking with ultra energy-efficiency (less than 10W per node) and zero maintenance.

+
+
+
+
+
+ + {/* From Real Estate to Digital Infrastructure */} +
+
+
+

From Real Estate to Digital Infrastructure

+

+ Just Like Solar Panels Transform Buildings Into Power Generators, ThreeFold Nodes Transform Them Into Digital Utilities. +

+
+
+ + + + Compute, Storage, Networking + + + Your building can produce essential digital resources. + + + + + + AI Inference Power + + + Host AI workloads and contribute to decentralized AI. + + + + + + Recurring Digital Revenue + + + Monetize idle capacity and generate passive income. + + +
+

+ Compute is now one of the world's most valuable resources. Sovereign infrastructure is the new standard. +

+
+
+ + {/* Why Real Estate Developers Should Join */} +
+
+
+

Why Real Estate Developers Should Join

+

+ Transform your properties into digital assets and unlock new revenue streams. +

+
+
+ + + + + Passive Digital Revenue + + + + Monetize idle compute, bandwidth, and storage capacity. + + + + + + + Higher Property Value + + + + Market properties as cloud-enabled and future-proof. + + + + + + + Green & Resilient + + + + 10x less energy vs traditional datacenters, resilient to outages. + + + + + + + Turnkey Deployment + + + + No IT expertise required for installation and operation. + + + + + + + Sovereign Cloud + + + + Data stays local and private, under your control. + + + + + + + Future-Proof + + + + Supports AI, Web3, digital twins, and modern applications. + + +
+
+
+ + {/* Technical Advantages */} +
+
+
+

Built on Revolutionary Technology

+

+ Key differentiators that make ThreeFold superior to traditional infrastructure. +

+
+
+ + + + Zero-OS + + + Stateless, self-healing operating system for autonomous compute. + + + + + + Quantum-Safe Storage + + + Unbreakable data protection with 10x efficiency through mathematical dispersion. + + + + + + Mycelium Network + + + Mesh networking that routes around failures, ensuring resilient connectivity. + + + + + + + Smart Contract for IT + + + + Autonomous, cryptographically secured deployments for IT resources. + + + + + + + Geo-Aware AI + + + + Private AI agents that respect boundaries and data sovereignty. + + + + + + + Future-Proof + + + + Supports AI, Web3, digital twins, and modern applications. + + +
+
+
+ + {/* Real Cost Comparison */} +
+
+
+

Dramatic Cost Savings

+

+ Experience significant cost advantages compared to traditional cloud providers. +

+
+
+ + + + + + + + + + + + + + + + + + + + +
ServiceThreeFoldOther Providers
Storage (1TB + 100GB Transfer)Less than $5/month$12–$160/month
Compute (2 vCPU, 4GB RAM)Less than $12/month$20–$100/month
+
+

+ Up to 10x more energy efficient than traditional datacenters. +

+
+
+ + {/* Who It's For */} +
+
+
+

Perfect For

+

+ Clear target markets and use cases for ThreeFold's solutions. +

+
+
+ + + + + Governments + + + + Building sovereign AI and cloud infrastructure. + + + + + + + Telecoms and ISPs + + + + Deploying local compute grids and edge solutions. + + + + + + + Developers and Startups + + + + Seeking cloud independence and decentralized hosting. + + + + + + + AI and Web3 Companies + + + + Hosting inference or full-stack decentralized applications. + + + + + + + Communities + + + + Seeking plug-and-play digital resilience and local infrastructure. + + +
+
+
+ + {/* Proven at Scale */} +
+
+

Proven at Scale

+

+ ThreeFold's technology is already deployed globally and proven in production. +

+
+ + + Live in over 50 countries + + + Our decentralized grid spans across the globe. + + + + + 60,000+ CPU cores active + + + Massive computational power available on the grid. + + + + + Over 1 million contracts processed on-chain + + + Secure and transparent deployments managed by smart contracts. + + + + + Proven technology stack in production for years + + + Reliable and robust infrastructure for your digital needs. + + +
+

+ View live statistics: https://stats.grid.tf +

+
+
+ + {/* Call to Action */} +
+
+

Ready to Transform Your Infrastructure?

+

+ The future of digital infrastructure starts with your building. +

+
+ + +
+

Join the most resilient, inclusive, and intelligent internet.

+
+
+ + {/* Footer */} +
+
+
+ + ThreeFold Galaxy +
+

Building the new internet, together in our sovereign digital freezone.

+

© 2025 ThreeFold Galaxy. A new era of decentralized infrastructure.

+
+
+
+ ) +} + +export default TierSHPage \ No newline at end of file diff --git a/src/components/t.md b/src/components/t.md new file mode 100644 index 0000000..c9ee143 --- /dev/null +++ b/src/components/t.md @@ -0,0 +1 @@ +![alt text](image.png) \ No newline at end of file diff --git a/src/config/navigation.json b/src/config/navigation.json index a24dd44..3a85217 100644 --- a/src/config/navigation.json +++ b/src/config/navigation.json @@ -2,7 +2,13 @@ { "path": "/", "label": "Home", - "component": "HomePage", + "component": "NewHome", + "show": true + }, + { + "path": "/tiers", + "label": "Tier S-H", + "component": "TierSHPage", "show": true }, { @@ -34,11 +40,5 @@ "label": "Blog Post", "component": "BlogPost", "show": false - }, - { - "path": "/become-member", - "label": "Become a Member", - "component": "BecomeMember", - "show": true } ] \ No newline at end of file diff --git a/tone_of_voice_review.md b/tone_of_voice_review.md index d8c4c77..a8d4684 100644 --- a/tone_of_voice_review.md +++ b/tone_of_voice_review.md @@ -15,8 +15,8 @@ The current language often uses strong, technical, or abstract terms that might * **Suggestion:** Change to "Working Together" or "Our Collective Effort" * **Original:** `Reclaim Your Digital Life. Build a New Internet Together.` * **Suggestion:** "Take Charge of Your Digital Life. Create a Better Internet Together." - * **Original:** `Join OurWorld Coop, a growing movement of people helping each other live, learn, and thrive in the digital age. Here, human connection matters. Your data is yours. Your voice counts. Together, we’re building a new kind of internet, one that’s free, fair, and made for us all.` - * **Suggestion:** "Join OurWorld Coop, where people help each other live, learn, and thrive online. We focus on human connection. Your data is yours. Your voice matters. Together, we're shaping an internet that's free, fair, and works for everyone." + * **Original:** `Join ThreeFold Galaxy Coop, a growing movement of people helping each other live, learn, and thrive in the digital age. Here, human connection matters. Your data is yours. Your voice counts. Together, we’re building a new kind of internet, one that’s free, fair, and made for us all.` + * **Suggestion:** "Join ThreeFold Galaxy Coop, where people help each other live, learn, and thrive online. We focus on human connection. Your data is yours. Your voice matters. Together, we're shaping an internet that's free, fair, and works for everyone." * **Original:** `Join people who are taking control of their digital lives.` * **Suggestion:** "Join people who are managing their digital lives with purpose." @@ -31,10 +31,10 @@ The current language often uses strong, technical, or abstract terms that might * **Digital Freezone Teaser:** * **Original:** `More Than Technology: A Sovereign Digital Freezone` * **Suggestion:** "More Than Technology: A Protected Digital Space" - * **Original:** `OurWorld Coop operates within a sovereign digital freezone with its own governance, dispute resolution, and legal framework, ensuring true digital independence for our members.` - * **Suggestion:** "OurWorld Coop operates within a protected digital space with its own rules, ways to resolve disagreements, and legal structure, giving our members real digital freedom." + * **Original:** `ThreeFold Galaxy Coop operates within a sovereign digital freezone with its own governance, dispute resolution, and legal framework, ensuring true digital independence for our members.` + * **Suggestion:** "ThreeFold Galaxy Coop operates within a protected digital space with its own rules, ways to resolve disagreements, and legal structure, giving our members real digital freedom." -* **OurWorld Section: A New Way to Live Digitally:** +* **ThreeFold Galaxy Section: A New Way to Live Digitally:** * **Original:** `A Complete Sovereign Solution` * **Suggestion:** "A Comprehensive Approach to Digital Life" * **Original:** `Your HERO is an advanced personal digital assistant, powered by your own legal entity in a Freezone. It manages your digital life and helps you grow through trusted connections and shared knowledge. Together, we are united in a cooperative structure.` @@ -92,7 +92,7 @@ The current language often uses strong, technical, or abstract terms that might * **Original:** `The revolution starts with your first click.` * **Suggestion:** "Your journey begins with a click." -### `src/components/OurWorldHero.jsx` +### `src/components/ThreeFold GalaxyHero.jsx` * **Hero Section:** * **Original:** `It represents you, protects your data, and helps you learn and thrive. Powered by collective intelligence, shaped by your values, and fully under your control.` @@ -103,12 +103,12 @@ The current language often uses strong, technical, or abstract terms that might * **Suggestion:** "Meanwhile, artificial intelligence could become controlled by a few, or not helpful to those who need it most." * **Original:** `Instead of pursuing Artificial General Intelligence (AGI), a machine-first simulation of human cognition, we build Augmented Collective Intelligence (ACI). Intelligence that scales with people, not against them.` * **Suggestion:** "Instead of focusing on AI that tries to think like humans, we're building a system that helps people think better together. This intelligence grows with us, supporting our efforts." - * **Original:** `OurWorld COOP brings the ACI philosophy to life, a planetary-scale intelligence system for learning, healing, creativity, and human development. It is rooted in each person's context, culture, and journey.` - * **Suggestion:** "OurWorld COOP puts this idea into practice, creating a system that helps people worldwide learn, heal, create, and grow. It's built around each person's unique background and journey." - * **Original:** `Through your HERO, you interact with OurWorld COOP not as a user, but as a co-creator of collective wisdom.` + * **Original:** `ThreeFold Galaxy COOP brings the ACI philosophy to life, a planetary-scale intelligence system for learning, healing, creativity, and human development. It is rooted in each person's context, culture, and journey.` + * **Suggestion:** "ThreeFold Galaxy COOP puts this idea into practice, creating a system that helps people worldwide learn, heal, create, and grow. It's built around each person's unique background and journey." + * **Original:** `Through your HERO, you interact with ThreeFold Galaxy COOP not as a user, but as a co-creator of collective wisdom.` * **Suggestion:** "Through your HERO, you contribute to and benefit from our shared knowledge, rather than just being a user." -* **What is OurWorld COOP and HERO:** +* **What is ThreeFold Galaxy COOP and HERO:** * **Original:** `WHAT CAN OUR HERO DO?` * **Suggestion:** "What Your HERO Can Do" * **Original:** `Your HERO is more than just a chatbot, it's your trusted private ally in the digital world.` @@ -161,8 +161,8 @@ The current language often uses strong, technical, or abstract terms that might * **Call to Action:** * **Original:** `Ready to Meet Your HERO?` * **Suggestion:** "Discover Your HERO" - * **Original:** `Join OurWorld Coop and get your personal HERO - a digital assistant that truly serves you, operating from within our sovereign digital freezone where your interests come first.` - * **Suggestion:** "Join OurWorld Coop and get your personal HERO - a digital assistant that supports you, operating from within our secure digital space where your interests are prioritized." + * **Original:** `Join ThreeFold Galaxy Coop and get your personal HERO - a digital assistant that truly serves you, operating from within our sovereign digital freezone where your interests come first.` + * **Suggestion:** "Join ThreeFold Galaxy Coop and get your personal HERO - a digital assistant that supports you, operating from within our secure digital space where your interests are prioritized." * **Original:** `Your HERO awaits in our sovereign digital territory.` * **Suggestion:** "Your HERO awaits in our secure digital space." @@ -303,8 +303,8 @@ The current language often uses strong, technical, or abstract terms that might ### `src/components/BecomeMember.jsx` * **Hero Section:** - * **Original:** `Join OurWorld Coop's sovereign digital freezone for $20 USD per month.` - * **Suggestion:** "Join OurWorld Coop's protected digital space for $20 USD per month." + * **Original:** `Join ThreeFold Galaxy Coop's sovereign digital freezone for $20 USD per month.` + * **Suggestion:** "Join ThreeFold Galaxy Coop's protected digital space for $20 USD per month." * **Original:** `This will be your unique identifier (e.g., firstpart.secondpart). Each part must be 7 lowercase letters.` * **Suggestion:** "This will be your unique identifier (e.g., firstpart.secondpart). Each part must be at least 6 lowercase letters." (This was already changed in code, but the description needs to be updated in the markdown.)