Skip to content

Commit a80da24

Browse files
Copilot0xrinegade
andcommitted
Complete tutorial system and team updates: add Mao Mao characters, missing tutorials, individual tutorial pages
Co-authored-by: 0xrinegade <[email protected]>
1 parent 7f0de48 commit a80da24

File tree

4 files changed

+1500
-22
lines changed

4 files changed

+1500
-22
lines changed

website/src/pages/AboutPage.tsx

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,46 +10,46 @@ const stats = [
1010

1111
const team = [
1212
{
13-
name: 'Sarah Rodriguez',
13+
name: 'Mao Mao',
1414
role: 'Co-founder & CEO',
15-
bio: 'Former VP of Engineering at Stripe, led payment infrastructure for 100M+ users',
16-
image: 'https://images.unsplash.com/photo-1494790108755-2616b612b9c3?w=300&h=300&fit=crop&crop=face',
17-
linkedin: 'https://linkedin.com/in/sarah-rodriguez'
15+
bio: 'Fearless sheriff turned fintech leader, brings justice to cross-chain payments with legendary sword skills',
16+
image: 'https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=300&h=300&fit=crop&crop=face',
17+
linkedin: 'https://linkedin.com/in/sheriff-mao-mao'
1818
},
1919
{
20-
name: 'Alex Chen',
20+
name: 'Badgerclops',
2121
role: 'Co-founder & CTO',
22-
bio: 'Ex-Facebook blockchain engineer, built cross-chain protocols for Meta\'s crypto projects',
22+
bio: 'Cybernetic badger engineer with mechanical arm, built SVM-Pay\'s core infrastructure while eating muffins',
2323
image: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=300&h=300&fit=crop&crop=face',
24-
linkedin: 'https://linkedin.com/in/alex-chen'
24+
linkedin: 'https://linkedin.com/in/badgerclops-deputy'
2525
},
2626
{
27-
name: 'Priya Patel',
28-
role: 'Head of Engineering',
29-
bio: 'Former Coinbase senior engineer, expert in bridge protocols and DeFi infrastructure',
27+
name: 'Adorabat',
28+
role: 'Head of Security',
29+
bio: 'Smallest team member but fiercest defender, uses sonic screams to detect payment vulnerabilities',
3030
image: 'https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=300&h=300&fit=crop&crop=face',
31-
linkedin: 'https://linkedin.com/in/priya-patel'
31+
linkedin: 'https://linkedin.com/in/adorabat-hero'
3232
},
3333
{
34-
name: 'Mike Johnson',
35-
role: 'Head of Security',
36-
bio: 'Previously at Trail of Bits, specialized in smart contract auditing and security research',
34+
name: 'King Snugglemagne',
35+
role: 'Head of Business Development',
36+
bio: 'Charismatic ruler of Pure Heart Valley, uses royal connections to expand SVM-Pay globally',
3737
image: 'https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?w=300&h=300&fit=crop&crop=face',
38-
linkedin: 'https://linkedin.com/in/mike-johnson'
38+
linkedin: 'https://linkedin.com/in/king-snugglemagne'
3939
},
4040
{
41-
name: 'Emily Watson',
41+
name: 'Tanya Keys',
4242
role: 'Head of Product',
43-
bio: 'Former Figma product lead, designed developer tools used by millions of creators',
43+
bio: 'Former bounty hunter turned product strategist, designs payment flows with precision targeting',
4444
image: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=300&h=300&fit=crop&crop=face',
45-
linkedin: 'https://linkedin.com/in/emily-watson'
45+
linkedin: 'https://linkedin.com/in/tanya-keys'
4646
},
4747
{
48-
name: 'David Kim',
48+
name: 'Eugene',
4949
role: 'Blockchain Engineer',
50-
bio: 'Ex-Solana Labs engineer, contributed to Solana core protocol and developer tooling',
50+
bio: 'Genius inventor and engineer, creates innovative bridge protocols while maintaining his experimental lab',
5151
image: 'https://images.unsplash.com/photo-1556157382-97eda2d62296?w=300&h=300&fit=crop&crop=face',
52-
linkedin: 'https://linkedin.com/in/david-kim'
52+
linkedin: 'https://linkedin.com/in/eugene-inventor'
5353
}
5454
]
5555

website/src/pages/DocsPage.tsx

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,22 @@ import {
5454
} from './tutorials/DeFiTutorials'
5555
import {
5656
CreatorTippingSystemTutorial,
57-
ContentCreatorSubscriptionsTutorial
57+
ContentCreatorSubscriptionsTutorial,
58+
NFTDropPlatformTutorial,
59+
CommunityRewardSystemTutorial
5860
} from './tutorials/SocialTutorials'
61+
import {
62+
MultiChainArbitrageTutorial,
63+
CrossChainLiquidityPoolTutorial,
64+
PaymentRoutingOptimizationTutorial,
65+
CrossChainGovernanceTutorial
66+
} from './tutorials/CrossChainTutorials'
67+
import {
68+
MobileWalletIntegrationTutorial,
69+
IoTMicropaymentsTutorial,
70+
SmartCityPaymentsTutorial,
71+
V2XPaymentsTutorial
72+
} from './tutorials/MobileTutorials'
5973

6074
// Documentation sections
6175
const sections = [
@@ -315,6 +329,8 @@ export function DocsPage() {
315329
<Route path="/tutorials/social" element={<SocialTutorials />} />
316330
<Route path="/tutorials/social/creator-tipping" element={<CreatorTippingSystemTutorial />} />
317331
<Route path="/tutorials/social/creator-subscriptions" element={<ContentCreatorSubscriptionsTutorial />} />
332+
<Route path="/tutorials/social/nft-drops" element={<NFTDropPlatformTutorial />} />
333+
<Route path="/tutorials/social/community-rewards" element={<CommunityRewardSystemTutorial />} />
318334

319335
{/* Other category pages */}
320336
<Route path="/tutorials/defi" element={<DeFiTutorials />} />
@@ -323,6 +339,18 @@ export function DocsPage() {
323339
<Route path="/tutorials/cross-chain" element={<CrossChainTutorials />} />
324340
<Route path="/tutorials/mobile" element={<MobileTutorials />} />
325341

342+
{/* Cross-Chain Advanced Tutorial Routes */}
343+
<Route path="/tutorials/cross-chain/arbitrage" element={<MultiChainArbitrageTutorial />} />
344+
<Route path="/tutorials/cross-chain/liquidity-pools" element={<CrossChainLiquidityPoolTutorial />} />
345+
<Route path="/tutorials/cross-chain/payment-routing" element={<PaymentRoutingOptimizationTutorial />} />
346+
<Route path="/tutorials/cross-chain/governance" element={<CrossChainGovernanceTutorial />} />
347+
348+
{/* Mobile & IoT Tutorial Routes */}
349+
<Route path="/tutorials/mobile/wallet-integration" element={<MobileWalletIntegrationTutorial />} />
350+
<Route path="/tutorials/mobile/iot-micropayments" element={<IoTMicropaymentsTutorial />} />
351+
<Route path="/tutorials/mobile/smart-city" element={<SmartCityPaymentsTutorial />} />
352+
<Route path="/tutorials/mobile/v2x-payments" element={<V2XPaymentsTutorial />} />
353+
326354
<Route path="/cross-chain" element={<CrossChainDoc />} />
327355
<Route path="/architecture" element={<ArchitectureDoc />} />
328356
<Route path="/security" element={<SecurityDoc />} />

0 commit comments

Comments
 (0)