import React from 'react'; const AboutPage = () => { return (

About PlebDevs

PlebDevs is a custom-built education platform designed to help new and aspiring developers, with a special focus on Bitcoin Lightning and Nostr technologies.

The pitch is simple:

Key Features

{/* Feature sections */}
  • Resources: Markdown documents posted as NIP-23 long-form events on Nostr.
  • Workshops: Enhanced markdown files with rich media support, including embedded videos, also saved as NIP-23 events.
  • Courses: Nostr lists that combine multiple resources and workshops into a structured learning path.
  • } />

    PlebDevs aims to provide a comprehensive, decentralized learning experience for aspiring developers, with a strong emphasis on emerging technologies in the Bitcoin ecosystem.

    ); }; const FeatureSection = ({ icon, title, description }) => (

    {title}

    {typeof description === 'string' ? (

    {description}

    ) : ( description )}
    ); export default AboutPage;