import React, { useState } from 'react'; import Image from 'next/image'; import NostrIcon from '../../public/images/nostr.png'; import { Tooltip } from 'primereact/tooltip'; import { useToast } from "@/hooks/useToast" import useWindowWidth from "@/hooks/useWindowWidth"; const AboutPage = () => { const {showToast} = useToast() const windowWidth = useWindowWidth(); const isMobileView = windowWidth <= 768; const copyToClipboard = async (text) => { try { await navigator.clipboard.writeText(text); showToast("success", "Copied", "Copied Lightning Address to clipboard") if (window && window?.webln && window?.webln?.lnurl) { await window.webln.enable(); const result = await window.webln.lnurl("austin@bitcoinpleb.dev"); if (result && result?.preimage) { showToast("success", "Copied", "Copied Lightning Address to clipboard") } } } catch (err) { console.error('Failed to copy:', err); } }; return (
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:
PlebDevs aims to provide a comprehensive, decentralized learning experience for aspiring developers, with a strong emphasis on emerging technologies in the Bitcoin ecosystem.
{description}
) : ( description )}