From f2e64d77f5bb07c7b76ca2deeb21d37c15e61325 Mon Sep 17 00:00:00 2001 From: User Date: Sat, 22 Aug 2026 07:41:19 +0200 Subject: [PATCH] Update tokenomics and community links Replace the token allocation with the requested 10B supply distribution and wire the supplied X, Discord, WhatsApp, and YouTube destinations. --- src/components/layout/Footer.tsx | 21 +++++-- .../sections/CommunityFundingSection.tsx | 20 +++++-- src/components/sections/CommunitySection.tsx | 26 ++++---- src/components/sections/TokenomicsModal.tsx | 6 +- src/data/tokenomics.ts | 60 ++++++++++++------- src/types.ts | 2 +- 6 files changed, 84 insertions(+), 51 deletions(-) diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index ae7cb26..1d8f5ca 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Layers, Github, Twitter, MessageSquare, ShieldCheck, ArrowUpRight, Activity } from 'lucide-react'; +import { Layers, Twitter, MessageSquare, Send, Youtube, ShieldCheck, ArrowUpRight, Activity } from 'lucide-react'; import { Badge } from '../ui/Badge'; interface FooterProps { @@ -122,7 +122,7 @@ export const Footer: React.FC = ({
= ({ = ({ - + + + +

diff --git a/src/components/sections/CommunityFundingSection.tsx b/src/components/sections/CommunityFundingSection.tsx index 1df7858..78231ce 100644 --- a/src/components/sections/CommunityFundingSection.tsx +++ b/src/components/sections/CommunityFundingSection.tsx @@ -102,21 +102,29 @@ export const CommunityFundingSection: React.FC = ({

Allocation Summary

diff --git a/src/components/sections/CommunitySection.tsx b/src/components/sections/CommunitySection.tsx index a34efda..db4c0c0 100644 --- a/src/components/sections/CommunitySection.tsx +++ b/src/components/sections/CommunitySection.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { motion } from 'motion/react'; -import { Twitter, MessageSquare, Github, Linkedin, Send, ShieldCheck, CheckCircle2, Heart } from 'lucide-react'; +import { Twitter, MessageSquare, Send, Youtube, ShieldCheck, CheckCircle2, Heart } from 'lucide-react'; import { SectionHeading } from '../ui/SectionHeading'; import { GlassCard } from '../ui/GlassCard'; import { Badge } from '../ui/Badge'; @@ -12,7 +12,7 @@ export const CommunitySection: React.FC = () => { icon: Twitter, members: '12,400+ Followers', description: 'Daily product updates, engineering deep dives & founder announcements.', - link: 'https://x.com', + link: 'https://x.com/TheBMBlueprint', badge: 'Official Feed' }, { @@ -20,24 +20,24 @@ export const CommunitySection: React.FC = () => { icon: MessageSquare, members: '8,200+ Members', description: 'Engage with core engineers, test private beta builds & join dev workshops.', - link: 'https://discord.com', + link: 'https://discord.com/channels/980516717648298065/1539503547211718656', badge: 'Beta Testing' }, { - name: 'Telegram Hub', + name: 'WhatsApp Community', icon: Send, - members: '5,800+ Members', - description: 'Real-time protocol telemetry, treasury announcements & community discussion.', - link: 'https://t.me', + members: 'Community Chat', + description: 'Join the community for updates, conversations, and project announcements.', + link: 'https://chat.whatsapp.com/LBsTvHFSZOPJ7e3ru1Covq', 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' + name: 'YouTube Channel', + icon: Youtube, + members: 'Video Updates', + description: 'Watch project updates, educational content, and community videos.', + link: 'https://www.youtube.com/@birthdaymessaging', + badge: 'Watch Now' } ]; diff --git a/src/components/sections/TokenomicsModal.tsx b/src/components/sections/TokenomicsModal.tsx index ca1492b..2d36e4b 100644 --- a/src/components/sections/TokenomicsModal.tsx +++ b/src/components/sections/TokenomicsModal.tsx @@ -46,7 +46,7 @@ export const TokenomicsModal: React.FC = ({
Token Economics - Total Supply: 1,000,000,000 $SX + Total Supply: 10,000,000,000 $SX

@@ -80,11 +80,11 @@ export const TokenomicsModal: React.FC = ({ {item.percentage}% -

{item.description}

+

{item.purpose}

- Lockup: {item.lockup} + Purpose {item.tokens}
diff --git a/src/data/tokenomics.ts b/src/data/tokenomics.ts index d431552..9b85a95 100644 --- a/src/data/tokenomics.ts +++ b/src/data/tokenomics.ts @@ -2,36 +2,52 @@ import { TokenomicsItem } from '../types'; export const tokenomicsAllocations: TokenomicsItem[] = [ { - category: 'Software Development & R&D', - percentage: 45, - tokens: '450,000,000 $SX', - lockup: 'Linear 24-month vest', - description: 'Dedicated strictly to funding senior engineering, cloud infrastructure, AI models, and software operations.', - color: '#f97316' // Tangerine + category: 'Community & Public', + percentage: 40, + tokens: '4,000,000,000 $SX', + purpose: 'Public distribution and community growth.', + description: 'Public distribution and community growth.', + color: '#f97316' }, { - category: 'Public Community Liquidity', - percentage: 30, - tokens: '300,000,000 $SX', - lockup: '100% Permanently Locked', - description: 'Fair launch liquidity pool on decentralized exchange with LP tokens permanently burned.', - color: '#0ea5e9' // Sky Blue + category: 'Liquidity', + percentage: 25, + tokens: '2,500,000,000 $SX', + purpose: 'Solana-based decentralized exchange liquidity.', + description: 'Solana-based decentralized exchange liquidity.', + color: '#0ea5e9' }, { - category: 'Community Rewards & Airdrops', + category: 'Marketing', percentage: 15, - tokens: '150,000,000 $SX', - lockup: 'Performance Milestones', - description: 'Allocated to early waitlist participants, active ecosystem users, and community contributors.', - color: '#fb923c' // Light Tangerine + tokens: '1,500,000,000 $SX', + purpose: 'Promotions, content, campaigns, and partnerships.', + description: 'Promotions, content, campaigns, and partnerships.', + color: '#fb923c' }, { - category: 'Ecosystem Treasury Reserve', + category: 'Rewards & Ecosystem', percentage: 10, - tokens: '100,000,000 $SX', - lockup: 'Multi-Sig Governance Lock', - description: 'Reserve buffer for future software acquisitions, security audits, and emergency protocol safeguards.', - color: '#38bdf8' // Sky Blue Accent + tokens: '1,000,000,000 $SX', + purpose: 'Contests, incentives, and ecosystem activities.', + description: 'Contests, incentives, and ecosystem activities.', + color: '#38bdf8' + }, + { + category: 'Team', + percentage: 5, + tokens: '500,000,000 $SX', + purpose: 'Contributors developing and maintaining the project.', + description: 'Contributors developing and maintaining the project.', + color: '#a78bfa' + }, + { + category: 'Treasury', + percentage: 5, + tokens: '500,000,000 $SX', + purpose: 'Future project expenses and strategic initiatives.', + description: 'Future project expenses and strategic initiatives.', + color: '#14b8a6' } ]; diff --git a/src/types.ts b/src/types.ts index 6820231..5534315 100644 --- a/src/types.ts +++ b/src/types.ts @@ -34,7 +34,7 @@ export interface TokenomicsItem { category: string; percentage: number; tokens: string; - lockup: string; + purpose: string; description: string; color: string; }