"use client"; import { Container } from "@/components/Container"; import { CP, Small } from "@/components/Texts"; const useCases = [ { title: "Private Messaging & Calling", description: "Communicate directly Pod-to-Pod with no centralized routing.", bullets: [ "End-to-end encrypted messaging and voice calling.", "No intermediaries — connections flow directly between Pods.", "Zero metadata profiling, tracking, or data resale.", ], }, { title: "Safe File Storage & Sharing", description: "Store and share files securely without exposing data to third parties.", bullets: [ "Files remain private with no platform-level scanning or analysis.", "Share documents and media directly with trusted contacts.", "Full ownership of your content — no cloud vendor dependencies.", ], }, { title: "Personal Calendar & Meetings", description: "Manage your schedule within your own sovereign digital space.", bullets: [ "Keep events, appointments, and reminders fully private.", "Coordinate calls and meetings entirely inside your Pod.", "No syncing with external servers or corporate platforms.", ], }, { title: "Private Communities & Teams", description: "Create groups or collaborative spaces without platform ownership.", bullets: [ "Form teams, friendship circles, and micro-communities.", "All interactions occur directly Pod-to-Pod.", "No hosting company or service provider controls your group data.", ], }, { title: "Quantum Safe File System (QSFS)", description: "Store data using a self-healing, encrypted, quantum-resistant system.", bullets: [ "Files are encrypted, split, and distributed across trusted nodes.", "Designed to withstand future quantum-level attacks.", "Automatic repair and reconstruction of data fragments.", ], }, { title: "Access From Any Device", description: "Your Pod travels with you — always accessible, always yours.", bullets: [ "Use your Pod from phones, laptops, tablets, or shared machines.", "Your identity, apps, and files follow you securely.", "No syncing or duplicated copies — direct access to your environment.", ], }, ]; export function PodsFeatures() { return (
{/* Top horizontal spacing */}
{/* Header */}

WHAT YOU CAN DO

A Fully Personal, Sovereign Digital Environment

Pods use open standard protocols like Matrix and Nostr. Everything runs directly through the Mycelium Network.

{/* Cards */}
    {useCases.map((useCase) => (
  • {/* Title + label */}

    {useCase.title}

    Feature
    {/* Short description */}

    {useCase.description}

    {/* Bullet list */}
      {useCase.bullets.map((bullet) => (
    • {bullet}
    • ))}
  • ))}
{/* Bottom spacing */}
); }