NoSys as platform

This commit is contained in:
Lucas
2026-05-24 09:11:42 +10:00
parent 4704c88627
commit bd248ee9b3
26 changed files with 1468 additions and 782 deletions

View File

@@ -1,109 +1,124 @@
<script setup>
import Card from '@/components/ui/Card.vue';
import CardContent from '@/components/ui/CardContent.vue';
import { AlertCircle } from 'lucide-vue-next';
import Card from '@/components/ui/Card.vue'
import CardContent from '@/components/ui/CardContent.vue'
import { AlertCircle } from 'lucide-vue-next'
</script>
<template>
<section class=" bg-card">
<div class="container py-24">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<div
class="inline-flex items-center gap-2 px-3 py-1 text-sm bg-destructive/10
text-destructive rounded-full border border-destructive/20 mb-6"
>
<AlertCircle class="h-4 w-4" />
The Problem of Centralization
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-6">
Centralized Platforms Are Broken
</h2>
<section class="bg-card">
<div class="space-y-4 text-muted-foreground leading-relaxed">
<p>
Today's social media landscape is dominated by centralized corporations that
control the digital lives of billions and operate under state jurisdiction.
These platforms:
</p>
<div class="container py-24">
<ul class="space-y-2 list-disc list-inside">
<li>Censor content based on opaque algorithms and legal pressure</li>
<li>Are subject to state laws, regulations, and political influence</li>
<li>Surveil users and track every interaction</li>
<li>Sell personal data as a business model</li>
<li>Manipulate visibility through proprietary algorithms</li>
</ul>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<p>
When communication infrastructure is centralized and bound by state authority,
true freedom of expression becomes structurally impossible.
</p>
</div>
<div>
<div
class="inline-flex items-center gap-2 px-3 py-1 text-sm
bg-destructive/10 text-destructive rounded-full
border border-destructive/20 mb-6"
>
<AlertCircle class="h-4 w-4" />
The Centralization Problem
</div>
<Card class="border-2">
<CardContent class="p-8">
<div class="space-y-6 ">
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">Censorship</h3>
<p class="text-sm text-muted-foreground">
Arbitrary content removal without transparency
</p>
</div>
</div>
<h2 class="text-3xl md:text-4xl font-bold mb-6">
Critical Infrastructure Is Becoming Centralized
</h2>
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">Surveillance</h3>
<p class="text-sm text-muted-foreground">
Constant tracking of user activities
</p>
</div>
</div>
<div class="space-y-4 text-muted-foreground leading-relaxed">
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2"> </div>
<div>
<h3 class="font-semibold mb-1">Data Exploitation</h3>
<p class="text-sm text-muted-foreground">
Personal information sold as a commodity
</p>
</div>
</div>
<p>
Communication, identity, discovery, distribution, and coordination are increasingly controlled by a small number of corporations and platforms.
</p>
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">Algorithmic Control</h3>
<p class="text-sm text-muted-foreground">
Manipulation of what content you see
</p>
</div>
</div>
<p>
As technology becomes more integrated into everyday life, centralized control over infrastructure creates structural dependency on entities users cannot govern or audit.
</p>
<p>
NoSys was created to explore a different direction:
decentralized systems where coordination happens directly between participants instead of through centralized intermediaries.
</p>
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">State Dependency</h3>
<p class="text-sm text-muted-foreground">
User expression limited by government authority
</p>
</div>
</div>
</div>
</div>
</CardContent>
</Card>
</div>
<Card class="border-2">
<CardContent class="p-8">
<div class="space-y-6">
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">
Infrastructure Dependency
</h3>
<p class="text-sm text-muted-foreground">
Critical systems increasingly rely on centralized providers
</p>
</div>
</div>
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">
Platform Control
</h3>
<p class="text-sm text-muted-foreground">
Access, visibility, and communication controlled by private entities
</p>
</div>
</div>
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">
Data Concentration
</h3>
<p class="text-sm text-muted-foreground">
Massive amounts of user data aggregated into centralized systems
</p>
</div>
</div>
<div class="flex items-start gap-4">
<div class="h-2 w-2 rounded-full bg-destructive mt-2" />
<div>
<h3 class="font-semibold mb-1">
Single Points of Failure
</h3>
<p class="text-sm text-muted-foreground">
Centralized architecture creates systemic fragility
</p>
</div>
</div>
</div>
</CardContent>
</Card>
</div>
</section>
</div>
</section>
</template>