import React from 'react'; import { motion } from 'motion/react'; import { Twitter, MessageSquare, Github, Linkedin, Send, ShieldCheck, CheckCircle2, Heart } from 'lucide-react'; import { SectionHeading } from '../ui/SectionHeading'; import { GlassCard } from '../ui/GlassCard'; import { Badge } from '../ui/Badge'; export const CommunitySection: React.FC = () => { const socialChannels = [ { name: 'X (Twitter)', icon: Twitter, members: '12,400+ Followers', description: 'Daily product updates, engineering deep dives & founder announcements.', link: 'https://x.com', badge: 'Official Feed' }, { name: 'Discord Community', icon: MessageSquare, members: '8,200+ Members', description: 'Engage with core engineers, test private beta builds & join dev workshops.', link: 'https://discord.com', badge: 'Beta Testing' }, { name: 'Telegram Hub', icon: Send, members: '5,800+ Members', description: 'Real-time protocol telemetry, treasury announcements & community discussion.', link: 'https://t.me', badge: 'Live Chat' }, { name: 'GitHub Protocol', icon: Github, members: 'Open Source', description: 'Inspect our smart contract repositories, SDK code & SDK documentation.', link: 'https://github.com', badge: 'Verified Code' } ]; return (
{/* Social Cards Grid */}
{socialChannels.map((channel) => { const Icon = channel.icon; return (
{channel.badge}

{channel.name}

{channel.description}

{channel.members} Join Channel →
); })}
{/* Founder's Signed Transparency Pledge Card */}

Founders' Public Commitment Pledge

Signed by the Software X & BirthdayMessaging.io Core Team

100% Irrevocable

Product Before Token

We pledge to prioritize real software updates across BirthdayMessaging.io and the 30+ products above speculative token marketing.

Zero Insider Deals or Secret Discounts

No venture capital funds or private insiders hold secret discounted tokens. Public liquidity is 100% permanently locked.

Multi-Sig Public Treasury Verification

100% of engineering expenditure and subscription revenue buy-backs are viewable on public smart contracts with real-time telemetry.

Continuous Revenue Buy-Backs

A dedicated percentage of subscription revenues generated by ecosystem products is automatically routed into $SX token buy-backs.

); };